To explicitly save the data in a record while you are editing it, click Save Record on the Records menu. Is there a "save record" command (that does the same thing) that I can use in an event procedure?
To explicitly save the data in a record while you are editing it, click Save
Record on the Records menu. Is there a "save record" command (that does the same
thing) that I can use in an event procedure?
Here you go:
'***EXAMPLE START
'Save record only if changes have been made
If Me.Dirty Then
Me.Dirty = False
End If