IListTextItemTooltip Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Get tooltip for business list
This text may be copied to the notepad, and saved as a *.vbs file. You need a running CRM win client 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 tooltip: " & objSO.CurrentContact.Business.tooltip, vbInformation + vbOKOnly, "SuperCOM" else MsgBox "Unable to connect to database" end if Set objSO = Nothing