Option Explicit
Public gstrWorkDir As String
Const mstrThisApp = "MiAplicacion" ' Constante del registro del nombre de la aplicación.
Const mstrWorkDirKey = "Work Dir" ' Constante del registro para la clave.
Sub GetWorkingDir()
Dim Retval As String
Dim Key As String
Dim Default As String
Key = "WorkDir"
Default = "Not Used"
Retval = GetSetting(mstrThisApp, mstrWorkDirKey, Key, Default)
If Retval <> "Not Used" Then
gstrWorkDir = Retval
Else
gstrWorkDir = App.Path 'Directorio de trabajo inicial
End If
End Sub
Sub WriteWorkingDir()
Dim Key As String
If LenB(gstrWorkDir) <> 0 Then
Key = "WorkDir"
SaveSetting mstrThisApp, mstrWorkDirKey, Key, gstrWorkDir
End If
End Sub