Click or drag to resize

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
Syntax
string ProgPath { get; }

Property Value

Type: String
String – like c:\Program files\SuperOffice
Examples

ProgPath

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
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