IPersonCountry Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Country
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
This example returns the text string from the IListTextItem object, to show the Business type of the contact.
Dim objSO Set objSO = CreateObject("SuperOffice.Application") If not (objSO is nothing) Then MsgBox "Current contact country: " & objSO.CurrentPerson.country.text, vbInformation + vbOKOnly, "SuperCOM" else MsgBox "Unable to connect to database" end if Set objSO = Nothing