TADBRoot.TrkTables (read-only property)

ITrkTables
Syntax: TrkTables = object.TrkTables
Description:
Returns a TrkTables object. TrkTables is a collection of TrkTable objects.

Example:

Dim oTADBRoot As Object
Dim oTrkTables As Object
Dim oTrkTable As Object

Set oTADBRoot = CreateObject("TADB.TADBRoot")

If oTADBRoot Is Nothing Then
   MsgBox "Root Object is not created"
End If

oTADBRoot.Load "TRK7", ""

Set oTrkTables = oTADBRoot.TrkTables

'Iterate through and find the TrkTable object.
For Each oTrkTable In oTrkTables
   MsgBox oTrkTable.Name
Next