Auto_nnn macros won't run, but the events will still fire, so if you're being good, and following the new event driven model (eg using Workbook_Open) you have to turn of the event handling before opening.
Code:
Application.EnableEvents = False
...
open files etc
...
Application.EnableEvents = True
And this works for any event with the application
HTH
Chris
There are two secrets to success in this world:
1. Never tell everything you know