Launching Excel programmatically not the same as launching excel manually

A

Atchoum

When I launch Excel programmatically, I don,t get the Acrobat toolbar to
load as when I launch Excel manually. Is there a switch taht I am missing to
have it load all plugins? Although I don't see Acrobat in the list of addins
so I doN,t even know how they work.

TIA,

Atchoum
 
J

Jim Rech

Excel does not open any files automatically, including add-ins, when it is
run via automation. I'd suggest that you find where the add-in is and open
it with code:

Dim xlsApp As Excel.Application
Set xlsApp = CreateObject("Excel.Application")
xlsApp.Workbooks.Open "c:\MyAddin.xla"


--
Jim Rech
Excel MVP
| When I launch Excel programmatically, I don,t get the Acrobat toolbar to
| load as when I launch Excel manually. Is there a switch taht I am missing
to
| have it load all plugins? Although I don't see Acrobat in the list of
addins
| so I doN,t even know how they work.
|
| TIA,
|
| Atchoum
|
|
 

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