ISettingsProgPath Property |
The program folder path - location of SOCRM.EXE and DLLs.
Does not require login
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxReadOnly Property ProgPath As String
Get
Dim instance As ISettings
Dim value As String
value = instance.ProgPath
property String^ ProgPath {
String^ get ();
}
Property Value
Type:
StringString – like c:\Program files\SuperOffice
ExamplesProgPath
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO
Set objSO = CreateObject("SuperOfficeDB.Database")
if objSO.login ("<userID>", "<password>") = True then
msgbox objSO.settings.ProgPath
Else
MsgBox "Could not log in"
End If
Set objSO = Nothing
See Also