Click or drag to resize

ISaleCompleted Property

Completed A sale that has not been completed yet will, if the saledate has passed, be in the checklist of the owning associate.

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

Boolean

True the sale has been completed.

False the sale 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
     MsgBox "Is the sale completed? " & objSO.CurrentSale.completed, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also