Cancelling a New Record Entry

S

Steph

I need a button ("Cancel") on my AddInsertionOrder form
that:

a) Undos any information that was entered (if any)
b) Closes the form
 
A

Allen Browne

Private Sub cmdCancel_Click()
If Me.Dirty Then
Me.Undo
End If
DoCmd.Close acForm, Me.Name
End Sub
 

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

Top