| ||||||||||||
|
|
|
|
ApplyFilter |
Dirty |
MouseDown |
|
BeforeDelConfirm |
Exit |
NoData |
|
BeforeInsert |
Filter |
Open |
|
BeforeUpdate |
Format |
|
|
DblClick |
KeyPress |
Unload |
|
Delete |
|
|
More examples of canceling an event:
| Private Sub Form_Undo(Cancel As
Integer) If MsgBox("Do you want to cancel the Undo?",vbYesNo) =
vbYes Then Cancel = True Else Cancel = False ... www.blueclaw-db.com/access_event_programming/undo.htm |
| Private Sub Due_Date_BeforeUpdate(Cancel
As Integer) If Me.Due_Date<Me.Start_Date then Msgbox "The Due Date must
not come before the Start Date" Cancel=True ... www.blueclaw-db.com/access_ |
|
|