Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.