Hey Everyone!
Has anyone come across this? I have a form (frmContacts) and a subform (frmContactsSub). The main form is basically uneditable, but the subform is editable (I had to do this in order to have an outer join that allows editing of the outside side).
I have an undo button on my main form with the following code:
DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, , acMenuVer70
Now all my edits are on the subform, but when I run the above code I get an error that the Undo command is not available. I’m assuming that’s because it’s not keeping track of changes on the subform, only the main form.
Any ideas on how to get around this? (Aside from putting the button on the subform, which I would like to do but can’t for design reasons.)
TIA!
Cecilia