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
Syntaxstring CurrentTemplatePath { get; }
ReadOnly Property CurrentTemplatePath As String
Get
Dim instance As ISettings
Dim value As String
value = instance.CurrentTemplatePath
property String^ CurrentTemplatePath {
String^ get ();
}
Property Value
Type:
StringString - like c:\Program files\SuperOffice\SO_Arc\Template
ExamplesCurrentTemplatePath
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 not (objSO is nothing) Then
msgbox objSO.settings.CurrentTemplatePath
Else
MsgBox "Could not log in"
End If
Set objSO = Nothing
See Also