Click or drag to resize

IDocumentStatus Property

Status indicates whether the document has been completed or not. Status returns the value from the appointment table relating to the document objects status, e.g. completed, started& All documents have a record in the appointment table with a document_id > 0. See the database manual for more information

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

Property Value

Type: Int32
Long – the value of the status
Examples

Status

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 "The status of current document: " & objSO.CurrentDocument.Status, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also