The Fields collection contains all record fields for the current receiver.
Item = Record.Fields(key|index)
See the Collection Object for standard collection properties and methods.
The following example will list all the fields in a record
For Each item In Record.Fields
sFieldName = item.Name
sFieldValue = item.Value
Next
The following example gets a specific field value
sFieldValue = Record.Fields("ZipCode")