-
Notifications
You must be signed in to change notification settings - Fork 67
Description
I git-cloned the CompFinance repo, built the solution with visual studio 2022 without any issue -- I just had to upgrade the windows SDK etc. (I built in debug x64 and my office 365 excel is x64 as well.)
Then I added the XLL to a blank excel file, in which I opened the test spreadsheet xlTest.xlsx.
Then, I see "#NAME?" in any cell using a function of the XLL in a formula.
These functions do not seem to be recognized by excel. (The same problem happens when building the debug xll in x86.)
I then put a breakpoint L1261 in the xlLExport.cpp file (the "entry point" of the XLL) and attached visual studio to a blank excel spreadsheet process, spreadsheet to which I added the debug x64 XLL. It indeed broke at the breakpoint I put.
The L1263 call to Excel12f worked like a charm. The L1265 call to Excel12f led to a #ifdef _WIN64 when one return(xlretFailed); Clearly, the code is x86 designed ...
The explains why all the XLL functions are not recognized by Excel, for the x64 XLL.
The #else of the #ifdef _WIN64 seems to have valid code, so I have redone the very same that preceeds, but in x86. Here, I didn't even break in the entry point ...
As I am no IT nor an XLL expert, I would be glad would someone point to a valid correction.