I have an access program that has three forms that are connected to the corresponding 3 tables. I created a separate macro, that I then attached to a button click event, for saving the records...
OnError
Go to Next
RunMenuCommand
Command SaveRecord
If [MacroError]<>0 then
MessageBox
Message=[MacroError].[Description]
Beep Yes
Type None
Title
End If
Instead of saving all the information from my text boxes to the corresponding fields in the tables, on two of the forms it saves over the same record each time. On the other form it gives me the error message "The command or action 'SaveRecord' isn't available now."
I also need it to be able to save multiple records at a sitting sometimes. I would like some help either in the macro itself or with VBA code answer. Thanks