is it possible to trap more than one undo event on form

  • Thread starter Thread starter anj
  • Start date Start date
A

anj

Dear All
Thanks in advance!
Undo event of a form only undo the last change to a
control data. Is it possible to undo more than one if
there are made changes to more than one controls just
clicking a command button?
If so how can I do it ?

Thnaks!
 
Pressing Esc once undoes the last control change, pressing Esc a second time
undoes all changes to the current record. The code to undo all changes to
the current record is

Me.Undo

To undo a specific control, the code would be

Me.ControlName.Undo
 
Back
Top