When does Excel forget about them? You mean the addin references are there
but the XLAs are not opening? Or the Addins are getting unchecked?
Perhaps another way to go about it is to have one little add-in whose job it
is on workbook_open to open the many big add-ins. This in general seems to
be a cleaner way to get many files opened, rather than having several add-in
references which are part of one reporting solution.
--
Tim Zych
http://www.higherdata.com
"Maury Markowitz" <(E-Mail Removed)> wrote in message
news:e476e392-2cd0-4979-b0cf-(E-Mail Removed)...
>I have several large XLA's that need to be installed in order for our
> large reporting workbooks to work correctly. We used to use AddIns for
> these, but we found that Excel periodically "forgets" about them once
> in a while, at which point all our code stops working.
>
> So I decided to avoid the AddIns system, and simply place the XLAs
> into the XLSTART folder. This works very well, they work just like
> they were loaded through AddIns.
>
> However, this limits the XLA to a particular user account. I'd like
> these XLAs to be system-wide. I tried placing them in a hand-created
> XLSTART folder in C:\Documents and Settings\All Users\Application Data
> \Microsoft, but it appears that Excel ignores it. Can anyone confirm
> that?
>
> If this is the case, does anyone have any alternate locations that
> might work in the same fashion? I'd like to be able to just drop the
> files on the machine and go.
>
> Maury