Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
332 views

Looking for free way to develop Excel add-ins using IronPython?

I don't know much about VSTO or VSTA, but I think you need the full version of Visual Studio to use either one. I can't convince my boss to buy us this, but I would like to develop Excel addins in ...
3
votes
1answer
137 views

Doing Documentation Using Excel Dna

I have used Excel Dna to create .NET xlls and use it in my addin and excel worksheet functions. I also use ExcelDnaPack.exe to package my xll. I was wondering if excel dna supports, any ways to ...
3
votes
1answer
164 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
1answer
167 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
2answers
211 views

Get the current Workbook Object in C#

I've been writing an application in C# which creates Custom Document properties in an Excel spreadsheet, I have a function for this which takes in a Workbook Object... However, actually getting the ...
2
votes
1answer
350 views

IronPython Excel-Dna Add-In - Exception regarding Microsoft.Dynamic reference

I am getting started with developing an Excel-DNA addin using IronPython with some C# as a wrapper for the calls to IronPython. With the generous help of the Excel-DNA developer, I have worked ...
1
vote
3answers
93 views

A little advice on C# - Excel interoperation

Good Afternoon Fellas, A little advice would be appreciated, I'm approaching a problem by which I need to write an agent which will go to a particular file directory, open an Excel Workbook (which ...
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
6answers
130 views

my first c# statement…what is the correct way to do this?

As the title suggest, this is my first C# try, so please go easy. (As a newb I promise to ask a bunch of easy questions for the C# pros out there to get you some easy points!) I'm using ExcelDNA to ...
1
vote
3answers
119 views

Converting Multi-Dimensional Array to Single, with null? Values

Good Morning, I am using ExcelDNA/C#/Excel primarily. What I am essentially trying to do is convert a multi-dimensional array (namely a range of cells) to a singular dimensional array, using the ...
1
vote
2answers
67 views

Is there a way to control excel to load the addins ? (useLegacyV2RuntimeActivationPolicy issue)

I am caught up in a real messy situation. Scenario: I have a Excel automation VBA add-in that calls a .NET 4.0 library (via ExcelDna). This 4.0 library invokes some methods in the 2.0 mixed mode ...
1
vote
0answers
92 views

what events are triggered in Excel Object Model

VS2008, .NET35, Excel AddIn, Excel-DNA, NetOffice In order to disable/enable ribbon buttons, I capture 3 events (e.g if users select a cell, the formula of the cell is MyUDF1, then buttons/menu ...
1
vote
1answer
109 views

Can I use Microsoft.Office.Tools.Excel in Excel DNA project, or is there another way to accomplish databinding a Table?

I have code that worked in the VSTO version of an Excel Addin Microsoft.Office.Tools.Excel.ListObject lo = Globals.ThisAddIn.VSTOWorksheet.Controls.AddListObject(r, "lo1"); ...
1
vote
1answer
382 views

C# Assembly with ExcelDNA

I am converting an VSTO app to one that is compatible with ExcelDNA. Howeve r the main problem is that ExcelDNA does not have the controls object as compared to VSTO. In VSTO: ...
1
vote
1answer
160 views

Overloading Methods in ExcelDNA

Is it possible to overload methods using ExcelDNA? For instance, my current code: [ExcelFunction(Category = "Test", IsVolatile=true)] public static String TestMethod() { ...
1
vote
2answers
400 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
321 views

ExcelDna & standalone F# installation

I have downloaded the F# zipped distribution (i.e., without the installer) on Windows and I have a difficulty using ExcelDna with it. When I copy the FSharp.Core.dll and the powerpack ones into the ...
0
votes
1answer
47 views

C# standalone application with java backend webservice

I am new to C# (still learning). My problem statement is that i have to build a C# plugin for excel. The backend of the application is spring based Restful service implemented using Restlet. Can i ...
0
votes
0answers
32 views

Read Protected Memory Error

I get the following error when running my code. Which is working with Excel DNA System.AccessViolationException was unhandled Message: Attempted to read or write protected memory. This is often ...
0
votes
1answer
31 views

Excel Add-In throws SHException

I have an excel addin, written in C#, .NET 35 SP1 using ExcelDNA, NetOffice Occasionally clients reported my add-in disappear from Excel, I check it is in disabled addin list, I enable it and it ...
0
votes
2answers
67 views

COM access to VB.Net dll without strong name signing

I'm converting a VB6 dll to VB.Net using Visual Studio 2008 Express. I want to use the same .dll to integrate with Excel via Excel-DNA, but also to be available via COM (I need to be able to call it ...
0
votes
2answers
84 views

Vista TaskDialog Wrapper: Unable to find an entry point named 'TaskDialogIndirect' in DLL 'ComCtl32'

I'm try to use Vista TaskDialog Wrapper and Emulator and I'm getting the following exception: "Unable to find an entry point named 'TaskDialogIndirect' in DLL 'ComCtl32'." ...in a simple Console ...
0
votes
1answer
47 views

UDF Methods For Determining Currency or Double

I'm creating a UDF in VB.NET that sometimes works with currency, which I would need to use the Decimal format in VB. But sometimes I working with time or just a plain double. What methods are out ...
0
votes
1answer
53 views

Passing cell values as parameters to ExcelDNA UDF

So I have a custom function I developed in ExcelDNA and have it loaded up in Excel. It works fine when I type in parameters as strings and call the function, however, when I put those strings into ...
0
votes
1answer
96 views

ExcelDNA and Mysql

I'm new to C#, creating excel plugins and also new to ExcelDNA. I got the examples working on http://exceldna.codeplex.com/wikipage?title=Getting%20Started. The UDF "MultiplyThem" works as expected. ...
0
votes
1answer
41 views

excel, mysql (with authentication)

We are creating an excel plugin but need some guidance as we're new to excel development (but not new to programming). Here's what we want: Once the user installs the plugin, they will authenticate ...
0
votes
2answers
71 views

Getting my head around string manipulation

I've been working on an ExcelDNA/C# add in for a while, and I'm at the final hurdle. I can get a selection address, and I first of all need to check if the rows in that selection are simply two, e.g. ...
0
votes
1answer
55 views

Is it possible to open Windows Explorer from a linklabel

Good Morning All, I have a project which will be distributed as an Excel add-in, it is written in C# and uses ExcelDNA. What I would like to do is add a linklabel to my add-in main form, when ...
0
votes
1answer
147 views

How to check Excel cell format in C# to see if cell value is a date

Good Morning All! I have been developing a project for some time in which users can publish a set of values for a set of dates. e.g. The user would select a Range in Excel which would contain date ...
0
votes
1answer
147 views

Cannot easily access excel range by name in excel add-in in C#

I am new to writing add-ins in C# (to C# as well). I have seen that ExcelDNA works very well for simple functions, but I got stuck with a simple task: manipulating ranges (especially addressed by ...
0
votes
0answers
31 views

Excel UDF returns a huge number

Excel AddIn using Excel DNA, VS2008, C#, MyUDF(param1, parm2) when I type in "=MyUDF" and hit enter, Excel displays a huge number like 970063926 and my c# code for MyUDF is not run Anyone know what ...
0
votes
0answers
132 views

how to implement dynamic ribbon in Excel AddIn

Excel Addin, written in C#, using Excel DNA, VS 2008 My addin has a ribbon tab with buttons. When users select an cell in Excel, based on formula string of the cell, certain buttons will be enabled ...
0
votes
1answer
202 views

Why can't Excel load the excel-dna addin?

The error is: The file you are trying to open, 'ExcelDna.xll', is in a different format than specified by the file extension. Verify that the file is not corrupt and is from a trusted source before ...
0
votes
0answers
110 views

install error 1001 can not find file specified

ExcelDNA AddIn, VS2008, Excel 2003 on a brand new PC which has Excel 2003 installed, but excel is never used. When I install my addin, installer calls some VBA code to register UDF in Excel, so ...
0
votes
1answer
283 views

Remove AddIn path from UDF in Excel formula

My addin was xla, now I use excelDNA, so it becomes xll, When I open spreadsheet built in previous version of My addin, for the UDF, it shows myUDF with path of xla. e.g "C:\Program ...
0
votes
1answer
91 views

Upgrade issue when COM Addin migrate to ExcelDNA AddIn

Before I change to ExcelDNA, My addin is COM AddIn, developed in C#, VS 2008 for Excel 2003+ my installer is created via Setup project in VS 2008 during install, install.xls is called in Custom ...
0
votes
0answers
251 views

Create Excel chart without header in C#

I'm trying to create an Excel chart with the following code: Excel.Workbook wb = ((Excel.Application)ExcelDnaUtil.Application).ActiveWorkbook; Excel.Worksheet ws = (Excel.Worksheet)wb.ActiveSheet; ...