Retrieve a table by name. | |
Syntax: | Set CimTable = object.Item ( tableID ) |
Parameters: |
tableID As
String - The name of the table
to retrieve from the tables collection.
|
Description: | The CimTables.Item returns a CimTable
corresponding to the tableID specified. Examples Dim oTable as CimTable Set oTable = oDb.Tables("MyTable") OR Set oTable = oDb.Tables.Item("MyTable") OR For Each oTable in oDb.Tables MsgBox oTable.Name Next |