boblarson
Smeghead
- Local time
- Today, 15:04
- Joined
- Jan 12, 2001
- Messages
- 32,040
If a form is bound and you make a change, the changes are automatically saved upon moving to another record or closing the form. No code necessary to force the save.
Also, as Rich pointed out, if you were to use code to force a save, you would use
DoCmd.RunCommand acCmdSaveRecord
instead as that other "menu" code is not good to use as it has been deprecated (so they say - the funny thing is that Microsoft themselves in their wizards, even in 2007, use their own obsolete code).
Also, as Rich pointed out, if you were to use code to force a save, you would use
DoCmd.RunCommand acCmdSaveRecord
instead as that other "menu" code is not good to use as it has been deprecated (so they say - the funny thing is that Microsoft themselves in their wizards, even in 2007, use their own obsolete code).