IListTextItemDeleted Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Current contact business type deleted
This text may be copied to the notepad, and saved as a *.vbs file. You need a running CRM 5 to make it work. (This example uses the SuperOffice COM application library and not the SuperOffice db library interface).
dim objso set objso = CreateObject("superoffice.application") If not (objSO is nothing) Then msgbox "current contact business type, is this deleted?: " & objso.currentcontact.business.deleted, vbinformation + vbokonly, "supercom" else msgbox "unable to connect to database" end if set objso = nothing