IDatabaseOwnerCountryId Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Get the country the owner contact is located in
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
dim objso set objso = createobject("superofficedb.database") If not (objSO is nothing) Then objso.login "<userid>", "<password>" msg = "owner contact id = " & objso.ownercontactid msg = msg & vbcrlf & "owner country id = " & objso.ownercountryid msgbox msg, vbinformation, "supercom" else msgbox "unable to log in" end if set objso = nothing