TrkRecords.Count (method)

method Count
Syntax: Long = object.Count ( )
Description:
Returns the total number of TrkRecord objects in this collection. The return value is zero if the collection is empty.

Example:

Dim idx As Long
Dim oTrkRecords As Object
....
....
idx = oTrkRecords.Count
MsgBox "Total Record in collection :" & idx
....
....