IPersonInterests Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Interests
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
This will return the number of active interests on the contact person.
Dim objSO Set objSO = CreateObject("SuperOffice.Application") If not (objSO is nothing) Then MsgBox "The current contact person has " & objSO.CurrentPerson.Interests.Count & " active interests.", vbInformation + vbOkOnly, "SuperCOM" else MsgBox "Unable to connect" end if Set objSO = Nothing