Click or drag to resize

IListTextItemTable Property

The Table id that this item comes from. Returns the table id that the list represents.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
SOTableId Table { get; }

Property Value

Type: SOTableId
SOTableId
Examples

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.

VB
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

See Also