prevent all addin loads on start?

G

Guest

I have an addin that opens a new instance of excel with a template workbook.

to prevent problems with user environment (other addins) I would like the
new instance of Excel to open without any addins. of course then I would load
my own addin in this "clean environment"

Thanks

code for new instance:
dim xl as object
Set XL = CreateObject(, "excel.application")
XL.Visible = True
XL.Application.Workbooks.Open (mytemplate)

template has :
XL.Application.IgnoreRemoteRequests = true
 
G

Guest

NEVER MIND............
now I see that although boxes are checked, nothing is loaded when opened
with automation..
 

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