VB command for save record

E

Eliezer

Hello folks - What is the command that tells VB to save
the current record? Thanks!
 
C

Cheryl Fischer

Here are two possibilities:

DoCmd.RunCommand acCmdSaveRecord

or

If Me.Dirty then
Me.Dirty = False
End if
 
Top