I've got a XLL Addin and I'm trying to run it under Excel 2007 XP without VBA installed. My addin is well registered (OPEN key as /R "C:\Program Files (x86)\MyAddin\myAddin.xll" in HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Excel\Options). When debuging, I see that DLLMain is called... but not xlAutoOpen (neither others xlSomethings functions): my UDFs are thus not registered (it was done in xlAutoOpen). Do I miss something ? Do I absolutly need VBA installed ? If yes, is there another way to avoid installing it ?
相关问题
- C++ 64-bit Excel add-in (XLL) is not loading corre
- Why won't Direct3D recover after unplugging a
- Python UDP Sockets with Multiple Interfaces
- MSMQ on Win2008 R2 won’t receive messages from old
- How to save file from Webpage from Excel VBA?
相关文章
- How do I get to see DbgPrint output from my kernel
- Unregister a XLL in Excel (VBA)
- How can one batch file get the exit code of anothe
- can't debug small program on eclipse helios cd
- Getting output from a command-line program in a De
- How to disable XP themes in WPF application?
- setting the environment path permanently
- Running a Process (WITH GUI) on Windows XP Logon S
I had the same issue. When I installed Office I deliberately did not install any Excel Add-Ins -- it looks like this actually cripples the loading of any future Add-ins.
After running the Office installer again and choosing to install the 'built-in' Add-Ins, I finally hit my xlAutoOpen breakpoint.