Click or drag to resize

ISettingsCurrentTemplatePath Property

The current template folder path, where does the SuperOffice CRM client look for it’s template. Default: “archivepath” emplate

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

Property Value

Type: String
String - like c:\Program files\SuperOffice\SO_Arc\Template
Examples

CurrentTemplatePath

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")
'This do not require that you're logged in
If not (objSO is nothing) Then         
    msgbox objSO.settings.CurrentTemplatePath
Else
    MsgBox "Could not log in"
End If
Set objSO = Nothing

See Also