I am trying to create a new instance of Excel using VBA using:
```vb
Set XlApp = New Excel.Application
```
The problem is that this new instance of Excel doesn't load all the addins that load when I open Excel normally...Is there anything in the Excel Application object for loading in all the user-specified addins?
I'm not trying to load a specific add-in, but rather make the new Excel application behave as though the user opened it themself, so I'm really looking for a list of all the user-selected add-ins that usually load when opening Excel.
以上就是Loading addins when Excel is instantiated programmatically的详细内容,更多请关注web前端其它相关文章!