Mar 17, 2004 #1 MyerK Programmer Mar 23, 2002 18 US I remember reading that there is a property that can be set when you open a spreadsheet that suppresses user qustions such as 'Do you want to save?'. Don't remember what it is. Anybody remember? Thanks
I remember reading that there is a property that can be set when you open a spreadsheet that suppresses user qustions such as 'Do you want to save?'. Don't remember what it is. Anybody remember? Thanks
Mar 17, 2004 #2 S SkipVought Programmer Dec 4, 2001 47,492 US Hi, In Excel its Code: Application.DisplayAlerts = False Skip, http://www.TheOfficeExperts.com Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 Upvote 0 Downvote
Hi, In Excel its Code: Application.DisplayAlerts = False Skip, http://www.TheOfficeExperts.com Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884
Mar 17, 2004 #3 drctx IS-IT--Management May 20, 2003 226 US i think docmd.setwarnings is what you would use. just remember to do error handling. ' turn warnings off docmd.setwarnings false ' *** code here *** ' turn warnings on docmd.setwarnings true Upvote 0 Downvote
i think docmd.setwarnings is what you would use. just remember to do error handling. ' turn warnings off docmd.setwarnings false ' *** code here *** ' turn warnings on docmd.setwarnings true
Mar 17, 2004 Thread starter #4 MyerK Programmer Mar 23, 2002 18 US Thanks a lot. MK Upvote 0 Downvote