ISelectionMembersEmpty Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Empty
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.CurrentContact.SelectionMembers.Empty then MsgBox "The current selection has no SelectionMembers� else MsgBox �The current selection has one or more SelectionMembers� End if else MsgBox "Unable to connect to database" end if Set objSO = Nothing