View Full Version : Saving records


sigmar
08-09-2001, 01:59 AM
I'm trying to save records with a "save" button. It's code is:

DoCmd.GoToRecord , , acNewRec

but I get an error and the saving is cancelled. Is there any other way to save a record??

Thanks

Rich
08-09-2001, 02:38 AM
That's the wrong code use DoCmd.RunCommand acCmdSaveRecord

sigmar
08-09-2001, 11:13 PM
Thanks for answering so quickly