I have a number of different programs where I create Excel instances and control them via OLE automation. In some cases the user can also work with these instances through Excel UI (which may involve opening other workbooks), in others they remain hidden. Problems arise when the user double-clicks an Excel file in Windows Explorer to work with it for some other, unrelated purpose. Explorer would grab any running instance and open the file in it, which may interfere with a running macro, or the instance may be currently hidden and thus unusable via UI. Is there a way to create an Excel instance in a "special" way to prevent it from being seen by Explorer?

link|improve this question
feedback

1 Answer

Here is a link that explains how to do it.

link|improve this answer
Thanks, it solves the problem, but it's a burden on the users of my software. I would prefer a solution on "my end" and would only recommend it to my users if it's not possible. – Igor Ivanov Nov 8 '10 at 20:46
Which language does your program use? Have you considered starting excel instances by issuing a command to the OS like in the link. Then in your program, obtain a reference to the instance as an automation server? – YWE Nov 8 '10 at 21:16
It's Delphi and it ultimately calls CoCreateInstance. And each time I start my own program I create a new instance precisely to avoid the same situation that I described for Windows Explorer. – Igor Ivanov Nov 8 '10 at 22:19
feedback

Your Answer

 
or
required, but never shown

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