Don't add record

  • Thread starter Thread starter Mike from Moriches
  • Start date Start date
M

Mike from Moriches

Greetings-
This must be easy. I have an input form attached to a file. I have a
command button labeled "Cancel" with an "on-click" event "DoCmd.Close" I
enter some data, but decide not to add the record. I click the Cancel
command button, but the messed up record is inserted into the file. What
command or event do I use to close the form without adding a record?
Thank-you,
Mike
 
Greetings-
This must be easy. I have an input form attached to a file. I have a
command button labeled "Cancel" with an "on-click" event "DoCmd.Close" I
enter some data, but decide not to add the record. I click the Cancel
command button, but the messed up record is inserted into the file. What
command or event do I use to close the form without adding a record?
Thank-you,
Mike

Before the Close line, put a line

Me.Undo

if you want to prevent the record from being saved.
 
Back
Top