Click or drag to resize

IDocumentFullPath Property

FullPath - path and filename FullPath - path and filename for the document object

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

Property Value

Type: String
String – the full path of the document
Examples

FullPath

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("superoffice.application")
If not (objSO is nothing) Then 
    msgbox "current document full path: " & objso.currentdocument.fullpath, vbinformation + vbokonly, "supercom"
else
    msgbox "unable to connect"
end if
set objso = nothing

See Also