Click or drag to resize

ISettingsSuperofIniPath Property

The full path to the SuperOffice.ini file, this file is located in the same folder as SOCRM.exe. Does not require login, if you access through SuperOfficeDB Type Library.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
string SuperofIniPath { get; set; }

Property Value

Type: String
String – the path to the ini-file
Examples

SuperOfIniPath

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

VB
Dim objSO
Dim objSettings
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    Set objSettings = objSO.Database.Settings
    MsgBox "Path where the SuperOffice.ini file is located: " & objSettings.SuperOfIniPath
    objSettings.SuperOfIniPath = "c:\SuperOffice2\SuperOf5.ini"
    MsgBox "Path where the SuperOfX.ini file is located: " & objSettings.SuperOfIniPath
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also