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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Popup warnings under Access 2k runtime

Status
Not open for further replies.

KStock

Programmer
Nov 18, 2001
6
GB
I am in the process of installing an Access 2000 database system onto a machine which only has Access 2000 runtime installed.
The system works fine but, whenever queries are used which update or append records I am getting the standard popup warning window asking if I want to proceed.
Under the full version of Access 2000 these are easily turned off from the options menu but, how do you achieve this under the runtime version which has no options menu?
If anyone has any ideas I would be very grateful!
Thanks
Kevin
 
Include some VBA code in your startup routine (not a macro) with the following statement:
Code:
DoCmd.SetWarnings False
This will suppress system messages.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top