me.dirty??

  • Thread starter Thread starter Norman Fritag
  • Start date Start date
N

Norman Fritag

Hi there

What is the proper way to catch any changes on a form, whereas the user is
prompted with a message If he/she wants to save this record??

Regards
Norman
 
Norman Fritag said:
Hi there

What is the proper way to catch any changes on a form, whereas the user is
prompted with a message If he/she wants to save this record??

Ask for confirmation in the Form's BeforeUpdate event. Do nothing if they say
Yes and if they say NO then...

Cancel = True
Me.Undo
 
Back
Top