property IsLookup | |
Syntax: | Boolean = object.IsLookup |
Description: | Returns True if this table is a lookup table and returns False if this table is not a lookup table. Example: Dim oTADBRoot As Object Dim oTrkTable As Object 'Get Table from Collection of TrkTables Set oTrkTable =
oTADBRoot.TrkTables.Item("GroupAttribs^VEHICLE
ORDER^Parts") oTADBRoot.TrkTables.WantLookup = False oTrkTable.ReadDB If Not oTrkTable Is Nothing Then 'TrkTable Found ... MsgBox "Is this table a
lookup table? " & oTrkTable.IsLookup Else 'Table Not found End If ... ... |