Tagged Questions

0
votes
1answer
40 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 gui …
0
votes
0answers
19 views

XLL plugin’s DDEConnect() fails when connecting to Excel?

I have a problem with connecting to Excel, there's a plugin that reads from db and tries to fill excel sheet with data across DDE, and it seems to be failing sometimes on DDEConnec …
0
votes
2answers
413 views

Can I run Excel from a .cmd script with all macros enabled?

How can I run excel from command line / cmd script such that it doesn't prompt if I want to enable macros in the spreadsheet I am running it with?
4
votes
3answers
244 views

Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an “asm pop…”?

I'm using Delphi to make an XLL add-in for Excel, which involves making a lot of calls to the Excel4v function of xlcall32.dll. However, as I'm guessing very few Delphi experts he …
1
vote
1answer
95 views

Converting XLL addin functionality to a native VB module : Problem refreshing formulae

Hey all I have a .xll plugin that registered a few functions which we use in our excel sheets in a number of places. The performance was very poor, and we didn't have the original …
0
votes
2answers
577 views

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

Hey all 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 X …
1
vote
2answers
217 views

Returning Japanese characters via char* in an Excel XLOPER

I am retrieving Japanese characters from a data source and I want to return this data to Excel in an XLOPER. I am using a Japanese version of Excel 2003 (hence XLOPERs and not XLO …
2
votes
1answer
609 views

Setting Excel Number Format via xlcFormatNumber in an xll

I'm trying to set the number format of a cell but the call to xlcFormatNumber fails leaving the cell number format as "General". I can successfully set the value of the cell using …
0
votes
1answer
136 views

Calling an XLL from (unmanaged) C++

Hi, I have an XLL Excel addin and now another team wants to use the same functionality in their project (unmanaged C++). Is there a way to interface with this XLL directly from C+ …