Turn off default warning messages

  • Thread starter Thread starter Randy
  • Start date Start date
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.
 
Back
Top