Excel addins are self-contained programs that extend or add functionality to Microsoft Excel.
0
votes
0answers
15 views
Under what condition will Excel think an add-in has a serious issue?
I have an Excel XLL AddIn
It uses a modal window on two ribbon buttons click handler.
When one modal window is on, I right click on the button on the bottom tool bar. Restart Excel, everything is ...
0
votes
1answer
10 views
AddInExpress install error - AddCustomTaskPanes
When I install a AddInExpress addin and open Excel I get this error:
Exception Source:
Exception Type: System.Runtime.InteropServices.COMException
Exception Message: Unable to create ...
0
votes
1answer
29 views
How to suppress Disable add-in dialog when Excel is force close
My addin is written in c#, NetOffice, ExcelDNA using WPFframework. Some part uses winforms, too.
The main UI is WPF
When there is a modal dialog displayed, users force close Excel.
Next time when ...
1
vote
1answer
41 views
Build Error + Creating VSTO addin for excel 2010
I try to create an excel add-in using VS 2010. When I create a new project Excel 2010 Addin, and try to compile the solution. I get an error which says.
'Error 1 The "FindRibbons" task could not ...
3
votes
2answers
97 views
Excel add in programming
I am trying to understand the excel add in programming using C#. For such a project there is a file called ThisAddIn.cs which handles all the events like WorkBookOpen, WorkBookClose, etc.
The code to ...
0
votes
1answer
10 views
How to get a code signing for excel addin exe files on a trial version basis?
I am looking to release an excel addin I built on my website, which the user's will download and install. It also has an auto update feature.
My problem is when the auto update feature runs it is not ...
0
votes
1answer
51 views
Reloading an Excel Addin Programmatically
I have an excel plug in that has a number of features. I have a button on the ribbon titled "configuration settings" that allows the user to select whether or not to allow some options (whether to ...
0
votes
1answer
52 views
Clear ribbon dropdown C# excel add-in 2010
I try to find solution for my problem. But nothing to find. I have 2 dropdown list and when I change value in first list I want to clear and fill new values new list. Is it possible?
1
vote
1answer
36 views
Excel addin (C#) + SharePoint 2003
there is Excel add-in that generates an information sheet. The client has this Excel addin.
There is portal SharePoint 2003.
On the client in Excel addin there is a button to click which add excel ...
0
votes
0answers
79 views
Run Ribbon button click event by using Excel Application instance
I am using an Excel AddIn to create a Ribbon at runtime.
This Ribbon has a Ribbon Button and a click event attacted to it.
I have to run the button click method by using the Excel Application ...
1
vote
3answers
82 views
Howto write Excel add-in functions that have a variable number of arguments (ex: MAX, MIN…)
I am writing an Excel Add-In in C++ using using Microsoft's dev frameworks (Excel 2010).
I would like to know if it is possible to write in c++ an excel function that have a variable number of ...
0
votes
0answers
38 views
How to Customize Office Ribbon without AddIn/Workbook/Template project?
There is a WinForm Application that start up an Excel 2003 instances and generate a few command buttons on toolbars by C# code.
I'm trying to upgrade those customized toolbars to Ribbon that running ...
0
votes
1answer
356 views
Inserting multiple rows into an Excel Sheet with Vb.Net Com Add-In
After determining a row index for an Excel Worksheet, InsertRow, I would like to insert 16 rows after it using VB.net. I am building a COM add-in if that changes anything. In VBA I would do this ...
0
votes
0answers
99 views
Insufficient Memory to continue execution of the program during Range.set_value VSTO
I am working with VS 2010 Excel Add-in project. I have used Range.Set_Value(Missing.Value, ObjectArray) for printing large data in sheet. It is working fine for small amounts of data.
For large data ...
0
votes
1answer
96 views
Calling Sheet from a WorkBook
I'm trying to call the 5th sheet in an open workbook. When I open the workbook from the program I seem to be able to do it:
Dim CurrentRun As New Excel.Application
Dim CurrentBook As Excel.Workbook
...
0
votes
0answers
17 views
Best practice to store and manipulate data in Excel Add-In? [duplicate]
We need to write an Excel 2007 Add-In using VB.NET.
The Add-In is to begin work by first reading upto about 4000 rows of data from 4 excel sheets. Once this data is read, then some logical operations, ...
2
votes
0answers
57 views
Colouring Borders for Selected Ranges Temporarily
I am making an Excel Addin, and am using an input box to allow the user to select ranges to be exported. The selection process works well, but I am hoping to display which cells are currently used by ...
0
votes
1answer
90 views
CommandBarButton on Context Menu doesn't work after ElementHost becomes visible
I have a CommandBarPopup on a the context menu in excel that contains three CommandBarButtons, one of those buttons opens a web page, the other two open a custom task pane.
If I make the custom task ...
2
votes
0answers
85 views
Wix Toolset: cannot add Excel Add-in project reference
I've just installed latest Wix v3.7. I created a VS 2010 "Excel 2010 Add-in" project and, in the same solution, a Wix "Setup Project".
Problem is, when I try to reference the Add-in project from the ...
1
vote
0answers
109 views
Excel Application.Ready=False When Receiving Data via COM dll
I am delivering external data using the dispatch interface via a COM dll to an Excel plugin. In the VBA sink method, I check that Application.Ready = True before trying to write the data to the ...
0
votes
0answers
49 views
Call cells recalculation from Excel AddIn
folks!
I'm trying to find any Excel C/C++ API for force recalculation of any particular cell.
It is easy to do from VBA, but I need to embed it somehow into AddIn (xll file).
The general task is ...
0
votes
1answer
85 views
Using Range.TextToColumns to convert to multiple columns does not work
My goal is to convert a single csv string to multiple columns in excel using Range.TextToColumns().
I have a csv file whose columns can contain commas inside them, in that case the column value has ...
1
vote
0answers
60 views
VSTO application deployment error
I am facing VSTO error when I am trying to install the application using click once installer. I have tried on Windows XP machine and also on Windows 7 machine.
Exact error when opening the ...
0
votes
2answers
131 views
How to set Excel footer with Excel-Add-In
I've been told to write up an Excel-Add-In which pastes a specific footer into every worksheet in a workbook.
After reading up the documentation of the Excel.Interop namespace I ended up with this ...
0
votes
0answers
88 views
Visual studio excel addin - getting distinct values of column from all sheets
I am developing a excel add-in in visual studio 2010.
How to get all the distinct values of columns B from all the sheets in a string array?
Do i need to loop through all the cells??
Is there any LINQ ...
0
votes
0answers
187 views
How do I get the value of a drop-down list of worksheet in C#
The help that I need is how do I get the value of a drop-down list that I'm creating by code C#? I don't know how to get the value of the selected item.
Any idea how to achieve this?
This is the ...
0
votes
1answer
116 views
Custom Excel function in C# is always disabled
I am trying to create a custom Excel function in C# (I hope to pull report data from a web API into Excel). However when I go into Excel, I can add the new Automation Addin, but it is listed under ...
0
votes
1answer
63 views
How to setup an excel addin regression testing framework
I am writing some Excel addins at work in C++ in an XLL. Is there a standard and/or easy way to setup non regression tests for excel addins and integrate them with a source control software like SVN ...
0
votes
0answers
147 views
resolving dependencies of registered instance in Castle Windsor
I wonder if it's possible for Castle container to resolve dependency on instance when it is registered as follows:
var inst = Globals.Ribbons.TestRibbon;
this.container.Register(
Component
...
0
votes
0answers
47 views
Windows Terminal Services 2008
Currently we have a set up where 8 users in Sydney have 8 physical machines in the UK which they remote on to in order to access things on the UK app servers. this is done due to the time it takes to ...
0
votes
1answer
112 views
Set value of cell in add in
I will explain everything that I have found but in short I just want to set the value of cell A1 in code behind. I have tried Create Excel Add-in - get cell value plus other links and all those ...
10
votes
4answers
726 views
Add user defined function to Visual Studio Excel Add-in
In visual studio I have an Excel 2010 Add-in project. How can I have that project create the following module:
I know I can save that workbook with that module then use it with my add in. It will ...
0
votes
1answer
23 views
Detect and close all dialogs
I created an add-in in Excel 2010. There are a few buttons in the add-in, each button will display a dialog, so at same time there can be more than one dialog displayed, all modaless (this is part of ...
1
vote
0answers
128 views
Detect Excel Event Cell Format Change
I am creating an Excel Add-In in C# using Visual Studio 2010 and trying to detect when a cell's formatting is changed. I can detect when the content of the cell changes using
...
2
votes
2answers
166 views
Excel unresponsive when InputBox open, c#
I'm building an excel add in using c#, and i want the user to select a range.
I have the inputbox set up and it's receiving the range fine when entered as a text.
The problem is that excel is ...
0
votes
0answers
198 views
C# Excel Add In with Office 2010(64 bit) and windows 7(64 bit)
I developed an excel add-in application with c#. It is working fine with office 2010(32 bit) but it is not working with office 2010(64 bit). When ı run from visual studio on debug mode it is working ...
1
vote
1answer
294 views
Distinguish Save and Autosave events in Microsoft Excel Add in
I have two Microsoft Excel 2007/2010 C# Addin projects. How can I distinguish regular "Save"/"Save As" commands that are called by user and "AutoSave" event that is periodically invoked by Excel ...
0
votes
2answers
2k views
Refresh external data in Excel 2010 while the file is open in the background but not in use
I am using Excel 2010 to query MS SQL databases and other Excel files to import data. I have set different intervals for each data connection (10 connections).
In excel this data is sliced and diced ...
0
votes
1answer
178 views
Exception with Excel SaveCopyAs() method
I have generated a excel report using excel-addins in vs2010 and it saved to desktop. After that I reopened the same file and changed it's data. When I tried to save back with same file name ...
2
votes
1answer
161 views
C# Excel Addin used like formula
Ok so I am developing an Excel addin that analyzes text in a cell then converts it.
I want it to work like things do in excel like absolute value when you can type into a cell =abs(YOURNUMBER) and ...
1
vote
1answer
249 views
Will a 32bit VSTO 4 Excel 2007 Addin work on 64bit Windows Server 2003 with Excel 2007 32bit?
We have a VSTO 4 32bit Excel Add-in which works fine on Windows XP (and Server 2003) 32bit. We are planning to upgrade our servers to Windows 2003 64bit OS and Excel 2007 32bit. My question is whether ...
0
votes
0answers
103 views
BindingList<T> with two separate forms
I'm still really new to programming and have run into trouble with something I feel should be simple. To my understanding, a BindingList should fire a listChanged event every time an item is added and ...
2
votes
1answer
269 views
register Shortcut-Key only for Excel VSTO
In my VSTO project (for Excel) I want to hook a shortcut-Key (keyboard combination of 3 keys) to a function in my C# code.
for example when I press CTRL+SHIFT+C a function MyShortCutFuction should ...
0
votes
1answer
305 views
C# Excel Addin - Alter custom task pane text box from ThisAddIn.cs
Is there a way to access controls from a custom task pane when creating event handlers in the "ThisAddIn.cs" file?
I want to allow the user to either enter a cell reference manually, or just click on ...
1
vote
1answer
121 views
VSTO pre-populated template available via AddIn
I'm new to VSTO - while within Excel, we would like the user to click on an Excel AddIn icon, to get a template of headings, formulas, colours/fonts, etc. Is it best to create this via a VS2010 ...
0
votes
0answers
81 views
C# Excel add-in not installed in Windows XP and Office 2007
We have developed a C# shared add-in for excel which works with all the windows operating systems and Office versions except the following combination.
Windows XP - Office 2007.
When I try to ...
1
vote
0answers
140 views
Issues deploying .NET VSTO Excel addins, what is the best way to do it?
When publishing an Excel Addin made in VS2010 using ClickOnce everything works out as it should. However when I update the code and do another publish. I encounter an error when opening Excel (see ...
1
vote
1answer
879 views
Acces Excel Sheet from Button a Ribbon
Ok, so I got my main AddIn which auto generated (Attachment 1)
and there is my Ribbon (Attachment 2) and I want to access the currently active excel sheet from that ribbon. But ...
0
votes
1answer
356 views
How to load excel macro modules from .bas files using c#?
I'm trying to write an excel add-in that automatically add predefined modules into the active workbook.
The "predefined modules" should meet the following two requirements:
these modules are ...
0
votes
1answer
94 views
How to add an item to the Powerpont context menu using .net add-in project
I've never wrote an office-plugin before, and I'd like to add my-own functionality to Powerpoint.
I want to add an item to the context menu that pops-out when the user select a slide,
an when this ...


