Confirm action

G

Guest

How do you stop the database form confirming that you are going to delete
records in a table?
Message “ the existing table ‘all Open Calls’ will be deleted before you run
the query. Do you want to continue anyway? “
The query being ran is a Make table Query
 
B

Billy

Hi Net!

Try with that in yor form:
DoCmd.SetWarnings False
'Your action is here
DoCmd.SetWarnings True

Or you can put in Form_BeforeDelConfirm event next statement:
Response = acDataErrContinue

Billy
 

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

Similar Threads


Top