A Adam Feb 20, 2004 #1 Is there a way of stopping a MS access form saving data when it has been closed? Any help would be appreciated
Is there a way of stopping a MS access form saving data when it has been closed? Any help would be appreciated
A Allen Browne Feb 20, 2004 #2 Cancel the form's BeforeUpdate event procedure, and Undo it: Private Sub Form_BeforeUpdate(Cancel As Integer) Cancel = True Me.Undo MsgBox "Your changes were cancelled" End Sub
Cancel the form's BeforeUpdate event procedure, and Undo it: Private Sub Form_BeforeUpdate(Cancel As Integer) Cancel = True Me.Undo MsgBox "Your changes were cancelled" End Sub