Tagged Questions
An Excel Add-In written in C and compiled in native Windows DLL format for high performance.
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 ...
5
votes
4answers
832 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 here have worked with ...
4
votes
1answer
230 views
XLL Excel addin in unmanaged C++
I have a few mathematical simulations in unmanaged C++ and now I need to integrate them with Excel (so that it is possible to call the functions from Excel and get the values back). I don't want to ...
3
votes
1answer
136 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 ...
3
votes
2answers
197 views
Is there a way to get the text and cursor position from the formula bar in Excel?
I'd like to get the current (possibly uncommitted) text out of the formula bar in Excel (from an addin in-process). All "usual" techniques don't work, like GetWindowText(...), etc.
As for cursor ...
3
votes
1answer
1k 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 xlSet.
XLOPER ...
2
votes
1answer
134 views
Excel DNA - Can I avoid doing a regasm all together?
I am trying to evaluate Excel DNA to use it in one of my excel add-in. I use C# functions (.NET 4.0) and want to invoke these functions from Excel. The reason I am interested is, the users of my addin ...
2
votes
3answers
66 views
When is it safe to free a FP * in a Excel XLL?
MSDN states:
... Therefore, when returning a DLL-created string or floating-point
array, you have the following choices:
Set a persistent pointer to a dynamically allocated buffer, ...
2
votes
1answer
67 views
Excel xll that can be used to track what VBA and other addin calls phave been made, time spent and memory used?
I worked somewhere before where they had an xll that allowed one to track the amount of memory being used in Excel. Also when calls were made to other dlls and xlls these were logged. This was all ...
2
votes
3answers
497 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 ...
2
votes
2answers
485 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 XLOPER12s).
wchar_t* ...
1
vote
0answers
38 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
0answers
37 views
With xlcAlert, what's the last parameter for?
I've looked around on Google and MSDN, and I can't find any documentation on xlcAlert. All I can find is code that happens to use xlcAlert, but it comes in two forms:
Excel4(xlcAlert, NULL, 1, ...
1
vote
0answers
226 views
How to create a xll for excel?
I'm trying to create just a simple xll file but I can not
I've followed the tutorial in the msdn site
http://support.microsoft.com/kb/178474
But this tutorial is for Microsoft Excel 97 Developer's ...
1
vote
2answers
318 views
Unregister a XLL in Excel (VBA)
I am just discovering the world of programming XLLs for Excel using XLW under Visual C++ 2010 and everything has been smooth so far using the template provided with the XLW package, I have a few ...
1
vote
2answers
142 views
XLL and vba function name collision leads to permanent #NAME? error
In excel 2003 sp2
XLL defines xll_function
If I call it, it works fine.
A VBA function of the same name is defined : it takes precedence over the XLL's xll_function.
the VBA function is removed, a ...
1
vote
1answer
147 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
345 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
2answers
316 views
Using Excel C API (XLLs)
I have been exploring Excel C API and am now good at getting multi-cell input, doing computations and outputing the result in a single cell. Now I want to output the result in multiple cells, for ...
1
vote
1answer
120 views
XLL doesn't properly load
I've got a XLL Addin and I'm trying to run it under Excel 2007 XP without VBA installed.
My addin is well registered (OPEN key as /R "C:\Program Files (x86)\MyAddin\myAddin.xll" in ...
1
vote
1answer
253 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
1answer
159 views
Converting XLL addin functionality to a native VB module : Problem refreshing formulae
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 code, so we replicated the ...
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
1answer
33 views
How can I get an XLL from a DLL?
Can anybody give me some links or explain me how to build an XLL from a DLL (for Excel)?
I cannot use Visual C++, so I rely on CodeBlocks + GCC.
So far I have the source code and I obtained a DLL ...
0
votes
0answers
28 views
Are the XLL Excel Add-ins developed with Excel 2007 SDK portable on Windows systems without .net runtime?
I plan on developing Excel Add-ins and I have looked around on ways of getting it accomplished. What I have found from expert views on various forums whom suggest using third party XLL development ...
0
votes
1answer
44 views
Intercept Excel Open File
Is there a way to intercept or override Microsoft excel's File open command by an COM Addin? I want to process the file before Excel tries to open the workbook, so Application_WorkbookOpen is too ...
0
votes
1answer
40 views
XLL Add-in menu won't auto load
I wrote a small XLL Add-in (VS2010 VC++/Excel 2007) containing a menu.
It's correctly registered (seen with the Add-In Manager) but the menu doesn't show up when I open my excel workbook (a .xlsb). I ...
0
votes
2answers
52 views
Basic of XLL Excel Addin - Need to invoke a C# API from Excel
I am quite new to creating excel addins.
Earlier I used to create a tlb for .NET libraries. I used to make my .NET class COMVISIBLE and create a Com callable wrapper and register as a tlb to call ...
0
votes
1answer
53 views
Excel crashing on longer unicode string returned from xll addin
The development of is with C/C++ on top of MS SDK.
The C++ piece of XLL is as follows:
__declspec(dllexport) LPWSTR WINAPI xlGetLang(LPSTR in_key) {
try {
static XLOPER12 lang;
static ...
0
votes
0answers
117 views
Excel 2010 32bit can't open xll addin built in VS 2010 on 32bit XP
The xll addin works fine if loaded manually through Excel Add-ins Manager. But next time when I open Excel it tries to open the xll addin as a text file with message "The file you are trying to open, ...
0
votes
2answers
85 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
0answers
41 views
Opening message when loading an xll
I would like users of my excel addin to be able to see the name of the version and a jpg file containing my logo each time they load my xll.
Currently, I am using xlcalert : ...
0
votes
1answer
231 views
Can't debug Excel 2003 Addin (XLL)
My problem:
I'm currently working on both an XLL (written in C++) and VSTO development. I'm using Visual Studio 2008 and Excel 2003.
My VSTO addin doesn't do anything exciting.
My XLL provides UDFs ...
0
votes
0answers
31 views
Issue registering dll with UDFs for Excel
I've created a .NET solution with a Addin for Excel in C++ (xll) and a C# library (dll) with UDFs to be used in Excel.
I added to the solution an installation project which writes few entries to the ...
0
votes
2answers
64 views
How can you retrieve a signature of function usable in Excel in VBA or a DLL?
When you type a function and press CTRL + SHIFT + A, you get a completion in Excel for the rest of the arguments.
For example, try to type, =SUM(, then press CTRL + SHIFT + A, and you will get the ...
0
votes
1answer
341 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 ...
0
votes
1answer
195 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 DDEConnect function with ...
0
votes
2answers
2k 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?
0
votes
1answer
388 views
Calling an XLL from (unmanaged) C++
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++?
-2
votes
1answer
17 views
Link error when i try to compile an xll on VC2010
I try to compile a xll (like a dll but for excel).
i follow this link : http://support.microsoft.com/kb/178474/en-us
when i compile my dll, i have these following errors :
...