I have a xll file which have a function and I want to call that function from C#. This xll file is used in excel.any body have idea how to do that?.I tried refrencing the xll file but I am not getting the value.If I open excel like start-->programms-->excel and in excel if i directly give the function I am getting right value.Same thing If i automate excel in c# and opened excel from Microsoft.Office.Interop.Excel and applied the function I am getting error

link|improve this question

25% accept rate
feedback

2 Answers

You probably won't be able to invoke the function directly because an XLL will expect the Excel interfaces to be driving. You'd have to do some serious faking.

Automating it through Excel will work though.

link|improve this answer
David thanks for the info.IF i automate through excel using excel interop and applying the formula in xll like oRng.Formula="=getnumber('abcd','IQ_COMPANY_ID')"; I am getting com exception error.Have any idea how to open an excel with the xll enabled. – user933316 Sep 13 '11 at 19:09
I've no idea. I don't know anything about the XLL or how you are driving it. – David Heffernan Sep 13 '11 at 19:10
feedback

An xll is just a dll. If you know the signature of the function you want to call, you can call it just like any other function. If you don't know the signature but can load the add-in in Excel, there is a way to get Excel to tell you the signature.

Automation only works if you are running Excel. There is no need for that once you know the signature.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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