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

Getting rid of MSGBOX in the SELECT INTO statement

Status
Not open for further replies.

cwarner

Programmer
May 9, 2003
46
GB
Hi,

I'm doing a bunch of SELECT INTO statements
and I keep getting those annoying MSGBOX
pop-ups that say "deleting X # records",
etc. Any way to get rid of these and make
them NOT show up?

Thanks!
Christy.
 
you can go to tools menu,
then options,
then the edit/find tab,
under confirm:uncheck record changes

that should work
 
Hi again,

This worked for all of the messages
except the delete table action. I clicked
on all of the "confirm" options under the
TOOLS/OPTIONS/EDIT/FIND, but the system is
still prompting me if I want to delete
a table (I delete and re-create it about
50 times in this pgm).

Any idears?

Thanks again,
Christy.
 
Prior to running your select into statements...I assume that you are running this in VBA then use the following prior to running.

Docmd.Setwarnings False
Your Statements
Docmd.Setwarnings True



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top