E Eliezer Apr 29, 2004 #1 Hello folks - What is the command that tells VB to save the current record? Thanks!
C Cheryl Fischer Apr 29, 2004 #2 Here are two possibilities: DoCmd.RunCommand acCmdSaveRecord or If Me.Dirty then Me.Dirty = False End if
Here are two possibilities: DoCmd.RunCommand acCmdSaveRecord or If Me.Dirty then Me.Dirty = False End if