securing large databases

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi we have a large database with near 200,000 items listed - we have just
upgraded to access 2003 - we have serveral staff using the same database, all
the staff need to be able to add, deleate and look up items - but how can i
make it so when they alter (sometimes an item has typing accidentaly removed)
or deleate an existing item a pop up box appears asking them if they are sure
before continuing? ideally one they just click yes or no to
 
You would put the confirmation message in the FORM's BeforeUpdate event.
If MsgBox("do you want to save?", vbYesNo) = vbNo Then
Cancel = True
Me.Undo
End if
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top