Tagged Questions

5
votes
4answers
845 views

Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an “asm pop…”?

I'm using Delphi to make an XLL add-in for Excel, which involves making a lot of calls to the Excel4v function of xlcall32.dll. However, as I'm guessing very few Delphi experts here have worked with ...
2
votes
3answers
70 views

When is it safe to free a FP * in a Excel XLL?

MSDN states: ... Therefore, when returning a DLL-created string or floating-point array, you have the following choices: Set a persistent pointer to a dynamically allocated buffer, ...
1
vote
2answers
337 views

Using Excel C API (XLLs)

I have been exploring Excel C API and am now good at getting multi-cell input, doing computations and outputing the result in a single cell. Now I want to output the result in multiple cells, for ...
0
votes
1answer
53 views

XLL Add-in menu won't auto load

I wrote a small XLL Add-in (VS2010 VC++/Excel 2007) containing a menu. It's correctly registered (seen with the Add-In Manager) but the menu doesn't show up when I open my excel workbook (a .xlsb). I ...