Jamie,
Not sure but Have you tried putting in
Application.DisplayAlerts = False
in your routine ???
Also if you use this then reset it to true
@ end of your routine.
Ivan
Yep, tried that first - it tries to update links even before executing the auto_open macro.
By the way in Excel '97 you do not need to turn the alerts back on at the end, '97 now resets most commands like these at the end of a macro,
except the statusbar. You have to respecify even if you call a macro from a macro.
Jamie
Are you sure about this? (Admittedly I haven't really tried leaving this setting ) other wise
microsoft is incorrect (wouldn't be surprised :-) ) when it states;
Excel 97
The default value is True. Set this property to False if you don't want to be disturbed by prompts and alert messages while a macro is running; any time a message requires a response, Microsoft Excel chooses the default response.
If you set this property to False, Microsoft Excel doesn't automatically set it back to True when your macro stops running. Your macro should always set the property back to True when it stops running.
Note This behavior is different from previous versions of Microsoft Excel. In earlier versions, the DisplayAlerts property was automatically reset to True when the macro stopped running. If you have old code that relies on this behavior, you should change your code to explicitly set the property back to True at the end of the macro.
Ivan