Disabling macros when opening a workbook?

G

Guest

I am using a macro that opens other workbooks to collect information from
those workbooks, but some of these have an open_workbook sub in the
thisworkbook object. I don't want the open_workbook sub to run when I open
these workbooks and have my macro retain cotrol over things. When I try
using "Application.AutomationSecurity = msoAutomationSecurityForceDisable"
before opening the workbook, the workbook will open but then things stop
completely with visual basic still running but waiting in the module
containing the macros I just disabled when opening the workbook. How can I
avoid this? Thanks for any help.
 
D

Die_Another_Day

Give Application.EnableEvents = False a try. DO NOT Forget to set this
back to true. Restart Excel does not change this setting.
Application.EnableEvents = True

Charles Chickering
 

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