I have some ExcelDNA C# code which I am working on, and within Excel an xll plugin that I'd like to be able to access. I am not able to get the source code of this plugin - it has to be used as is. So is there a method of being able to access these functions from C#?

link|improve this question

And could someone with a high enough reputation add an ExcelDNA tag please?! Thank you! – Alistair Collins Jan 18 '11 at 15:41
Thank you for adding the excel-dna tag! – Alistair Collins Jan 19 '11 at 9:05
No problem. I just got my shiny new tag-creating powers. I also want to learn more about ExcelDNA, since I'm thinking of using it soon. – jtolle Jan 19 '11 at 16:04
feedback

2 Answers

up vote 2 down vote accepted

Great to see an ExcelDna tag on StackOverflow!

You should take a look at making a call to xlUDF. It should allow you make a call to any UDF (including that of your XLL so long as it's loaded).

The MSDN description is here, with a similar question answered on Google Groups.

I hope this helps - please let me know how you get on as I would like to add xlUDF to my list of ExcelDna examples.

Chris

link|improve this answer
feedback

You can use GET.PROCEDURES from http://xllutility.codeplex.com to get a list of all loaded add-ins and their C signature from the third column of the array this returns.

This is a more general answer on how to call functions in any xll from any language that can call C. If you are using ExcelDna then the xlUDF route is much simpler.

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.