Is there a way to intercept or override Microsoft excel's File open command by an COM Addin? I want to process the file before Excel tries to open the workbook, so Application_WorkbookOpen is too late.

Ideally it should be triggered when an excel file is double-clicked also.

link|improve this question
Would a native C COM add-in (an XLL) help me? – gayan Nov 9 '11 at 6:36
feedback

1 Answer

Use:

Public Sub Auto_Open()

End Sub

It works even before Application_WorkbookOpen. Not sure if it is fast enough for you though.

Update:

This might be helpful for you too. Different ways to auto execute macros:

AutoExec
AutoNew 
AutoOpen 
AutoClose
AutoExit
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.