ISaleCompleted Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Boolean
True the sale has been completed.
False the sale has not been completed.
Completed
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
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