Get the table items collection. | |
Syntax: | Set CimTableItems = object.Items |
Description: | CimTable.Items returns a collection
representing the table items. Examples Examples Dim oTable as CimTable Dim oItems as CimTableItems Set oTable = oDb.Tables("MyTable") For Each oItem in oTable.Items MsgBox oItem.ID Next |