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 ...
3
votes
1answer
165 views

Unpack dll from excel xll dna file

I don't know if you know excel-dna project, it's a project that help to integrate .net assembly and language in excel addins. My problem is that I want to unpack a dll from an xll file (excel-dna is ...
2
votes
3answers
550 views

Can't load xll programmatically

I'm trying to automating some tests for an Excel add-in, which is in xll form. I have some problem in loading the xll. I'm writing it in C# and my code looks like this: using ...
1
vote
0answers
52 views

web request run at Excel launch time in Excel AddIn

I have an Excel AddIn, when Excel launches, it will access a web service (GET), it is a simple web service request and should finish immediately says: something like ...
1
vote
1answer
152 views

Load dependent DLL’s from Excel

We have a library (XLL file) which we load from network drive to Excel via RegisterXLL method through Excel automation from C# code. Recently we switched to VS2010, and now instead of having single ...
1
vote
2answers
403 views

Calling other xll files from C#/ExcelDNA code

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. ...
1
vote
1answer
263 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 ...
1
vote
2answers
1k views

Creating an excel worksheet function (UDF) at runtime in C#

Is it possible to create worksheet functions dynamically in C#, that is, without using the method attribute approach? Or is this something that's only supported using an XLL? What I'm looking at ...
0
votes
2answers
101 views

Calling function in XLL file from C#

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 ...
0
votes
1answer
357 views

Calling an XLL in C#

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 ...