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

Programming MSAccess ----> Excel

Status
Not open for further replies.

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 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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top