jennie
02-09-2000, 05:15 AM
I want to create a popup message appears when the user changes the data of a record. See, I have many lists in my forms and want to avoid changes by accident...
|
View Full Version : avoid changes by accident... jennie 02-09-2000, 05:15 AM I want to create a popup message appears when the user changes the data of a record. See, I have many lists in my forms and want to avoid changes by accident... Pat Hartman 02-09-2000, 08:19 AM Put the code for the pop up box in the form's BeforeUpdate event. The message box should give the the user the option to commit or cancel the changes. If he chooses cancel, your code will cancel the update event by setting cancel to true as in: cancel = true |