subform undo

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hello,
how can i undo the changes in the subform?
i have the code like below, but it doesn't work

Private Sub undo_Click()
Me.undo
Form_MySubform.undo
End Sub

thanks in advance :)
 
hi,
how can i undo the changes in the subform?
i have the code like below, but it doesn't work
It can't work, because Access is saving the changes automatically when
the subform looses the focus. This happens when pressing your undo
button on the main form.
Private Sub undo_Click()
Me.undo
Form_MySubform.undo
End Sub


mfG
--> stefan <--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top