Undo current field

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

Alex Martinez

Hello,

I like to have a command edit button that will undo the user entry, but only
on the current field she is in. I don't want to undo the whole record. Can
this be done? Thank you in advance.
 
Alex said:
Hello,

I like to have a command edit button that will undo the user entry,
but only on the current field she is in. I don't want to undo the
whole record. Can this be done? Thank you in advance.

Screen.PreviousControl.Undo

This syntax is required since the button will acquire focus you otherwise don't
know which field the user was on when the button was pressed.
 
Back
Top