TrkField.Name (read-only property)

property Name
Syntax: String = object.Name
Description:
Read Only property. Represents the column name in the database table.

Example:

Dim oTrkField As Object
...
...
Set oTrkField = oTrkRecord.TrkFields.Item("Name")
If Not oTrkField Is Nothing Then
   MsgBox "Field Name:" & oTrkField.Name
End If
...
...