Tagged Questions

7
votes
6answers
2k views

Calling Excel/DLL/XLL functions from C#

I have a particular function in an Excel addin(xll). The addin is proprietary and we do not have access to the source code. However we need to call some functions contained within the addin and we ...
4
votes
1answer
230 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 ...
3
votes
2answers
196 views

Is there a way to get the text and cursor position from the formula bar in Excel?

I'd like to get the current (possibly uncommitted) text out of the formula bar in Excel (from an addin in-process). All "usual" techniques don't work, like GetWindowText(...), etc. As for cursor ...
3
votes
1answer
1k views

Setting Excel Number Format via xlcFormatNumber in an xll

I'm trying to set the number format of a cell but the call to xlcFormatNumber fails leaving the cell number format as "General". I can successfully set the value of the cell using xlSet. XLOPER ...
2
votes
3answers
66 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, ...
2
votes
2answers
485 views

Returning Japanese characters via char* in an Excel XLOPER

I am retrieving Japanese characters from a data source and I want to return this data to Excel in an XLOPER. I am using a Japanese version of Excel 2003 (hence XLOPERs and not XLOPER12s). wchar_t* ...
1
vote
0answers
37 views

With xlcAlert, what's the last parameter for?

I've looked around on Google and MSDN, and I can't find any documentation on xlcAlert. All I can find is code that happens to use xlcAlert, but it comes in two forms: Excel4(xlcAlert, NULL, 1, ...
1
vote
0answers
226 views

How to create a xll for excel?

I'm trying to create just a simple xll file but I can not I've followed the tutorial in the msdn site http://support.microsoft.com/kb/178474 But this tutorial is for Microsoft Excel 97 Developer's ...
1
vote
1answer
252 views

Running an XLL outside Excel?

I know this question has been posted before... but I haven't found any answer yet (besides from the generic answers about how XLL are actually DLL, etc). Has anybody out there been successful calling ...
0
votes
1answer
32 views

How can I get an XLL from a DLL?

Can anybody give me some links or explain me how to build an XLL from a DLL (for Excel)? I cannot use Visual C++, so I rely on CodeBlocks + GCC. So far I have the source code and I obtained a DLL ...
0
votes
1answer
53 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
41 views

Opening message when loading an xll

I would like users of my excel addin to be able to see the name of the version and a jpg file containing my logo each time they load my xll. Currently, I am using xlcalert : ...
0
votes
1answer
388 views

Calling an XLL from (unmanaged) C++

I have an XLL Excel addin and now another team wants to use the same functionality in their project (unmanaged C++). Is there a way to interface with this XLL directly from C++?
-2
votes
1answer
17 views

Link error when i try to compile an xll on VC2010

I try to compile a xll (like a dll but for excel). i follow this link : http://support.microsoft.com/kb/178474/en-us when i compile my dll, i have these following errors : ...