Tagged Questions

4
votes
1answer
267 views

XLL Excel addin in unmanaged C++

I have a few mathematical simulations in unmanaged C++ and now I need to integrate them with Excel (so that it is possible to call the functions from Excel and get the values back). I don't want to ...
2
votes
1answer
74 views

Excel xll that can be used to track what VBA and other addin calls phave been made, time spent and memory used?

I worked somewhere before where they had an xll that allowed one to track the amount of memory being used in Excel. Also when calls were made to other dlls and xlls these were logged. This was all ...
1
vote
0answers
52 views

web request run at Excel launch time in Excel AddIn

I have an Excel AddIn, when Excel launches, it will access a web service (GET), it is a simple web service request and should finish immediately says: something like ...
0
votes
1answer
57 views

Intercept Excel Open File

Is there a way to intercept or override Microsoft excel's File open command by an COM Addin? I want to process the file before Excel tries to open the workbook, so Application_WorkbookOpen is too ...
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 ...
0
votes
1answer
64 views

Excel crashing on longer unicode string returned from xll addin

The development of is with C/C++ on top of MS SDK. The C++ piece of XLL is as follows: __declspec(dllexport) LPWSTR WINAPI xlGetLang(LPSTR in_key) { try { static XLOPER12 lang; static ...
0
votes
0answers
34 views

Issue registering dll with UDFs for Excel

I've created a .NET solution with a Addin for Excel in C++ (xll) and a C# library (dll) with UDFs to be used in Excel. I added to the solution an installation project which writes few entries to the ...
0
votes
1answer
357 views

Calling an XLL in C#

I have a XLL Addin (Test.xll). I wish to use this in my C# (VS2008/.Net 3.5) application. If anybody can guide me how to use this in my C# application. If anybody could please guide me how to use ...