How do I Disable Undo Command?

  • Thread starter Thread starter Alex
  • Start date Start date
A

Alex

How can I disable the undo command (and also ctrl+Z) in
some Form only of My application?
 
Hi,

You can try to save the record (Me.Dirty=false) in the after update
event of each control. That would have a side effect to slow the
application, mainly in a multi-user environment. Saving the record after
each modification would not disable the undo, but undo-ing recall the last
saved (validated) information, so, the last one entered in the control, in
such a scenario.


Hoping it may help,
Vanderghast, Access MVP
 

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