Click or drag to resize

IDocumentCompleted Property

Is Completed A document that has not yet been completed will always be displayed in the owning associate’s diary. If the “do by” date has passed, it will appear in the Checklist even if it had a time stamp. See the database manual for more information regarding appointments shown in the Checklist or the Diary

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

Property Value

Type: Boolean

True the document has been completed

False the document has not been completed

Examples

Completed

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

VB
Dim objSO
Dim result
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    Result = objSO.CurrentDocument.completed
    If result = True then
        MsgBox "Current document is set as complete.", vbInformation + vbOKOnly, "SuperCOM"
    Else
        MsgBox "Current document is NOT set as complete.", vbInformation + vbOKOnly, "SuperCOM"
    end if
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also