Re: Is There A Way to Pop Up a MessageBox Warning When User Changes Data?
- From: "cjb_kjb" <cjb_kjb@xxxxxxxxxxx>
- Date: 30 Jan 2006 14:52:02 -0800
Put an event procedure on the on change event.
Then put the following code in the event procedure:
Field - is the name of the field on the form. Change this to the field
name that is on your form.
Private Sub Field_Change()
If MsgBox("do you want to change this ?", vbYesNo) = vbNo Then
Me!Field.Undo
End If
End Sub
.
- Follow-Ups:
- Re: Is There A Way to Pop Up a MessageBox Warning When User Changes Data?
- From: Larry Linson
- Re: Is There A Way to Pop Up a MessageBox Warning When User Changes Data?
- References:
- Prev by Date: Re: Is There A Way to Pop Up a MessageBox Warning When User Changes Data?
- Next by Date: Re: Pass Parameter to query via Report
- Previous by thread: Re: Is There A Way to Pop Up a MessageBox Warning When User Changes Data?
- Next by thread: Re: Is There A Way to Pop Up a MessageBox Warning When User Changes Data?
- Index(es):
Relevant Pages
|