Toggling "confirm changes" for distribution

G

Guest

I'm distributing a program using Developer extensions which is packaging the
Access Runtime with it. I need to turn off the record changes and action
query confirmation pop-ups. How do I do that in the distributed versions?
 
G

Guest

Hi connorspops,

You code around it when you develop your application... instead of:

docmd.runsql strSQL, true

you would use:

docmd.setwarnings false
docmd.runsql strSQL, true
docmd.setwarnings true

Hope that helps.

Damian.
 

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

Top