IListTextItemTable Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Get tableId
This text may be copied to the notepad, and saved as a *.vbs file. You need a running CRM 5 to make it work. Remember to change the login information.
dim objdb set objdb = CreateObject("superofficedb.database") entablecntry = 19 ' vb would understand the enumeration, but vbs doesn't. isok = objdb.login("jr","") 'isok = objdb.login("<username>","<password>") if isok then set item = objdb.getlistitem(entablecntry , 578) ' country norway msgbox item.table else msgbox "could not login" end if