TrkField.Save (method)

method Save
Syntax: object.Save
Description:
Saves just this field to the database.

Notes:

If the Save method is called on a TrkField object, it tries to save only the current field (TrkField object) to the database. However, if the record this field object belongs to is a new record (not existing in the database), then it saves the entire record.

Example:

Dim oTrkFields As Object
Dim oTrkField As Object

...
'Get the records by using TrkTable.ReadDB method...
...

If Not oTrkRecord is Nothing
   Set oTrkField = oTrkRecord.TrkFields.Item("Name")
   oTrkField.Value = "Blend 1"
   oTrkField.Save
Else
   'Record object is empty...
End If
...
...