When you close other microsoft applications.. it will have a popup that says
"do you want to save changes to xyz" is this possible from one record to
another in Acces.. ie.. in a form.. please respond to
[email protected] or
[email protected].. thanks.
If you do all your updating using a Form, you can put VBA code in the
Form's BeforeUpdate event:
Private Sub Form_BeforeUpdate(Cancel as Integer)
Dim iAns As Integer
iAns = MsgBox("Do you want to save changes to xyz?", vbYesNo)
If iAns = vbNo Then
Cancel = True
End If
End Sub
If you're using a table datasheet you're out of luck, it has no usable
events. Also, in most database applications this kind of prompt would
become EXTREMELY annoying - a user might be inserting hundreds of
records!
Note that private EMail support is reserved for paying customers. It's
considered polite to come back to the newsgroup for your answers,
rather than demanding personal support from unpaid volunteers. Please
reply *to the newsgroup* if you have further questions (email replies
will be billed at my standard consulting rate).
John W. Vinson[MVP]
Join the online Access Chats
Tuesday 11am EDT - Thursday 3:30pm EDT
http://community.compuserve.com/msdevapps