vote up 0 vote down star

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 this XLL in the C# application, it will be great.

Any help is appreciated.

Regards, Tushar

flag

59% accept rate
1  
What does XLL stand for? – Darin Dimitrov Oct 23 at 7:55
support.microsoft.com/?scid=kb;en-us;178474&x… – Lucero Oct 23 at 7:59

1 Answer

vote up 1 vote down

You'll have to use P/Invoke via static external methods which use the DLL's exports. However, depending on the dependencies in the XLL (especially if it uses some Excel functionality) you may not be able to get this to work properly.

link|flag
@Lucero: Thanks for sharing. However i am not clear, if i need to reference the XLL (if yes, how can i do that, as i can only refererence DLL/EXE/TLB/OCX etc, not a XLL). – tush1r Oct 23 at 8:44
The XLL is in fact just a normal unmanaged (!) DLL, you can rename it to DLL. But you don't reference it directly, instead, you declare the functions to be imported via DllImportAttribute: msdn.microsoft.com/de-de/library/… – Lucero Oct 23 at 11:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.