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

link|improve this question

61% accept rate
1  
What does XLL stand for? – Darin Dimitrov Oct 23 '09 at 7:55
feedback

1 Answer

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|improve this answer
@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 '09 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 '09 at 11:09
feedback

Your Answer

 
or
required, but never shown

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