Turn off default warning messages

S

Steve Schapel

Blue Falcon,

If you are using a macro to run your Make-Table query, put a
SetWarnings,No action in the macro ahead of the action (OpenQuery?) that
you use to run the query. If you are using a VBA procedure, put
DoCmd.SetWarnings False
ahead of the code that runs the query, and
DoCmd.SetWarnings True
afterwards.
 

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