Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Removal of Confirmation Messages

Status
Not open for further replies.

ElliotCLIC

Programmer
Aug 14, 2006
1
GB
In Access 2003 i have a problem where i do not want to display any confirmaion messages. i have unticked everything in tools, options, edit / find. When i create a table that has to overwrite an existing table i still get a confirm table deletion message.

how do i prevent this appearing?????
 
Hi
DoCmd.SetWarnings False

then switch it back on again

DoCmd.SetWarnings True
 
Hi!

If you are doing this in code then you can do this:

DoCmd.SetWarnings = False
Your Code Here
DoCmd.SetWarnings = True

hth


Jeff Bridgham
Purdue University
Graduate School
Data Analyst
 
I guess you unticked everything under Tools->Options, Edit/Find tab, heading Confirm?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top