property TrkRecords | |
Syntax: | TrkRecords = object.TrkRecords |
Description: | Returns the collection of records. Example: Dim oTrkTable As Object Dim oTrkRecords As Object Dim oTrkRecord As Object ... ... Set oTrkRecords = oTrkTable.TrkRecords For Each oTrkRecord in oTrkRecords MsgBox "Records Index:" &
oTrkRecord.ID ... ... Next ... |