ISaleUDef Property |
Namespace: SuperOffice.COM.SuperOfficeDB
UDef
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 if objSO.CurrentSale.Udef.Count > 0 then MsgBox "The sale panel has user defined fields", vbInformation + vbOKOnly, "SuperCOM" else MsgBox "No user defined fields defined on the sale panel." end if else MsgBox "Unable to connect to database" end if Set objSO = Nothing