Tagged Questions
0
votes
0answers
62 views
Excel Add In's Custom Ribbon Tab Will Not Display
I've created an application level add-in for Excel to automate some tasks. I used the VS2012 template Visual C# > Office > 2010 > Excel 2010 Add-In.
Rather than having an action pane open every time ...
0
votes
0answers
33 views
Implement a Combobox with checkboxe in Excel add-in (Project) with C#
I want to implement a combobox including checkboxes in my excel add-in.
I have searched and found lots of projects implemented this component in winForms, but there wasn't any in excel add-in project ...
-1
votes
1answer
39 views
C# Add-in vs VBA Macro for Excel functionality
We would like to give users of our system the opportunity to drag some of the data from a database into Excel. (Only reading data, no chance of writing any data back to the DB). The users do not have ...
0
votes
2answers
89 views
Parsing excel data ( containing xml ) in VBA
I have a simple excel file containing rows and columns. One of the column contains rows of data which is string like this (XML data)
<Employee Name="R1" Designation="Developer">
<SkillSet ...
0
votes
0answers
101 views
Refresh data in excel Add-in in C#
I'm using visual studio C# to write an add-in for Microsoft Excel 2010.
The needed data for the add-in is given by webService and the database is being updated during the day.
The add-in should ...
0
votes
0answers
60 views
Excel Add-in: How to remove macro hotkey
How do I remove the hotkey from a macro which does NOT appear in Tools > Macro > Macros?
I installed an add-in and Excel has automatically assigned the hotkey "CTRL+U" to it. I want Ctrl+U to retain ...
0
votes
1answer
39 views
Run excel add in when workbook opens and pass the activeworkbook to add in
Need some advice on running an excel add in. I have created an excel add in that, checks workbooks opened by users and determines if the excel opened by user has code behind it. This bit works fine.
...
0
votes
2answers
51 views
Lost network connection causes Excel to crash
My Excel AddIn is written in NetOffice, ExcelDNA, C#
It calls web service to get data. It takes a while to fetch a large amount of data.
During the process of data fetch, if network connection is ...
0
votes
2answers
239 views
Excel addin. Missing Ribbon (XMl)
I developed Excel addin to Visual Studio 2012.Use projects Excel 2010 Add-in. In the project has created a Ribbon (XML):
[ComVisible(true)]
public class PricelistRibbon : Office.IRibbonExtensibility
...
0
votes
1answer
79 views
Excel addin deployment through ClickOnce update collapse
I developed Excel addin. I want to deploy addin it through ClickOnce. Addin publish to a Shared folder. Addin is developed successfully and appears in Excel. but when I change something in Adin and ...
0
votes
1answer
31 views
Can I receive one row per predecessor?
This forum has been very helpful to understand the Rally Excel Add-in.
I am able to extract the Predecessors for a user story.
If there are more than one then they are all placed into one cell ...
1
vote
2answers
166 views
Referencing an excel sheet from a Windows Form in Document Level Customization
I thought I'd try to learn VB.net and start with some VSTO (VS2012). I'm trying to do an Excel Document Customization with a separate Windows Form in it (.show on load). I can get the form to open ...
0
votes
1answer
273 views
Best Practices to handle multiple open workbooks in an Excel VSTO add-in
I'm working on an Excel VSTO add-in in VB.Net. I am trying to address the question of knowing which workbook my add-in should be effecting given that a user may open or close many workbooks before, ...
0
votes
1answer
181 views
Excel VSTO Workbooks.Open only working when another action is taken first
I am working on a VSTO add-in. I have a customized ribbon, and on that ribbon a button called TemplateCallButton. I also have several other functions and buttons, one of which just opens a folder ...
0
votes
0answers
33 views
how to make excel read env path
i have a excel program which loads an addin (say addin.xla) from a directory (say c:/work/). addin.xla needs several other addins (say a2.xla, a3.xla etc.) which also resides in c:/work/. when i set ...
0
votes
1answer
147 views
How to remove an Excel UDF programmatically
I have an old Excel addin (written in VBA), now I re-write the old addin using .NET, ExcelDNA, NetOffice. In the old addin, there is a UDF, say, OldUDF, in the new addin, there is a NewUDF, the two ...
0
votes
0answers
155 views
In Excel application-level C# add-in, set Data Source without wizard
I am trying to write an add-in that will allow a user to connect to a SQL database and draw the data from a table into Excel. (This is the simplest explanation, but not the entire explanation of the ...
0
votes
0answers
81 views
Automatically Run a method in Excel AddIn every hour (not via VBA)
My Excel AddIn is written in C#, ExcelDNA, NetOffice.
There is one method which retrieves hourly data from a server and display in Excel.
I want a way to retrieve data from server every hour. We ...
0
votes
0answers
182 views
Excel add-in ribbon not loading correctly
We have an Excel add-in that it is not loading correctly when an Excel instance is lanuched by a 3rd party software. Rather than adding the ribbon containing our add-in functions, the functions are ...
0
votes
0answers
39 views
How to get the add-in xll information from the Excel when use JAVA POI read Excel?
Excel have Add-in xll to extends its function. i use JAVA POI to read the formula of the Excel cell. when the formula is from add-in xll, i use my java code read the formula.
such as "'Sheet1'!C8 @= ...
1
vote
0answers
86 views
Excel COM AddIn example in native C++
I need to write an Excel AddIn to add user defined functions (UDF) to excel. I prefer to write it in unmanaged C++ (I already wrote one for Word). I am not able to locate an example from Internet.
...
0
votes
0answers
206 views
Get external data into excel Power Pivot programmatically using an add-in
I have an ODATA data source which needs some custom client side authentication. My requirement is to import this data into Excel for analysis using PowerPivot. I was able to create a custom add-in ...
1
vote
0answers
197 views
Dynamics Ax(R2) Excel add-in: How do I work with arrays?
In previous versions, the Dynamics Ax Excel add-in has returned an error when working with tables containing an array (A column named 'name' already belongs to this Data Table). This seems to have ...
0
votes
1answer
105 views
Excel crashes when install an addin
Excel AddIn, .NET 4.0, NetOffice 1.5.1.2, ExcelDNA 1.29, C#
installers calls a xls (install.xls) with VBA as follow
At the end of install.xls, Excel will close.
However, after Excel closes, Excel ...
0
votes
1answer
146 views
“addin.XLL is in a different format” issue, cannot open the xll I created by myself
I wrote a very simple xll file in VC++ 2010, and the Excel I am using is Excel 2007. The library contains only one function:
extern "C" LPXLOPER12 WINAPI tsMkErr() {
static XLOPER12 x;
...
-1
votes
1answer
89 views
Designing User Define Functions in Excel? [closed]
What are the different methods to create user defined function in excel using C#??
Till now I could only find User Defined Functions in C#
Thank you all
0
votes
1answer
241 views
Developing User Defined Functions in Excel using C#?
I am developing a User defined function in Excel using C# and Class library in VS 2010.
I followed the tutorial at How to Create UDF in Excel using C#
The code works well and it gets Registered.I can ...
0
votes
1answer
145 views
How to write a Excel C add-in function that return a string to Excel without memory leak?
I am writing an Excel XLL addin using C++, where I want my function to return a string to Excel using the predefined XLOPER12.
As I understanded, Excel require the function to return a pointer that ...
0
votes
1answer
104 views
URGENT : UAC Manifest file in VS2005 not working
I have an add-in in Excel that needs to store some data in the HKEY_LOCAL_MACHINE registry. because of the uac control in windowns vista & earlier versions, i added a manifest file. But it is just ...
0
votes
0answers
53 views
Best Practice for Dynamically allocated memory in an Excel XLL addin
I am writing an Excel XLL Add-in using C/C++. In my program I want to use some global variable to cache intermediate result. However, I do not feel comfortable with it because I don't know the safe ...
4
votes
1answer
112 views
Undo action for Excel addin
How does undo work in Interop.excel? C# - making a addin in VS
I imagine the following:
I register a undo-method on the stack (implemented by me).
I save the current state... where?
When the ...
7
votes
1answer
273 views
Excel 2007 addin displaying but not working
I created an Excel Addin that appears in the UI, but whenever I click it it doesn't work.
Option Explicit
Public sheetscol As Collection, depshtnm
Public hasdeps As Boolean
...
0
votes
0answers
132 views
Excel 2010 VSTO Addin registered in HKLM doesn't load once disabled and then enabled
I have created a Excel 2010 VSTO Addin which will be registered under HKLM\Software\Microsoft\Excel\Addins\MyAddin.Connect, LoadBehaviour is 3 and the addin loads properly when excel is opened.
But ...
0
votes
0answers
169 views
How to remove buttons from Excel ribbon [closed]
This should be really simple, but I spent a lot of time on research and got no closer to a solution:
Years ago I wrote an Excel Add-In with lots of buttons for Excel 2003. Someone ported everything, ...
0
votes
0answers
161 views
Cannot register assembly. Specific module could not be found
I'm trying to compile an excel addin solution that was developed in C#. Everything goes well when compiling but at the end, I receive the following message:
Error 1 Cannot register assembly ...
2
votes
0answers
433 views
My Excel 2010 Add in only shows up when opening a blank workbook. Won't show up when opening existing document
We have made an excel add in that is installed correctly and will only show up when opening Excel from the main icon (or a blank workbook). It will NOT show up on the toolbar when opening any ...
0
votes
1answer
163 views
Creating Excel Automation add-in with VC++
I am newbie to Excel addins and Visual Studio. After some search, I came up with the following steps to create Excel automation addin: (I am using VS 2012)
create a C++ ATL project
add a STL Simple ...
0
votes
1answer
125 views
Error on uninstalling / installing VSTO Excel plugin
I have a problem with VSTO packages. I now, there are many ways to cleanup the download cache, to deinstall the app and much more, but i tried it all and still have the problem.
I deinstalled the ...
0
votes
0answers
114 views
admin installs an Excel AddIn, how to make it available to non-admin users
My addin (XLL) installer works for non-admin & admin. However when an admin installs the addin for all-users(per-machine). It works for the admin only. When any other user logins, he/she can't ...
0
votes
2answers
113 views
Translating a VBA call into C# in an Excel add-in installer
My Excel addin is written in C#, but the installer makes a call to Excel through a VBA macro. I want to get rid of VBA.
I wonder what the following VBA does to the registry. From what I see, it adds ...
0
votes
0answers
156 views
Excel Add-In not loading COM add-in at runtime
We have created a Excel Add-In in VB .Net using ExcelDNA.
This Add-In also creates a COM Add-In dynamically, that creates a Custom Task Pane in Excel.
This has been working on our client machine, ...
2
votes
1answer
242 views
Right-click withevents works on source .xlsm but not on .xlam addin
I've made a couple of macros that run through right click menu button based on the cell value. Typically, if I right click on cell with value 'XYZ', the menu button shows as 'Run macro for XYZ' and ...
1
vote
0answers
60 views
Excel Add-In Doesn't work after protecting in the VBA Editor
I have written and compiled an XLA - Excel Add-In. The problem with the add-in is that if I password protect the ADD-In Project file, the macro I have written doesn't show up in . If the xla ...
0
votes
0answers
119 views
How to input a excel template addin using vb form to do batch process
I've a Excel template with an Addin with password protection. The addin is a Form that asks for browse a file and a command button. After clicking the button the data and parameters in the file are ...
0
votes
0answers
118 views
Calling Excel Add-In from Word Add-in
I have an Excel add-in wirtten by me. Now I want Word add-in that calls some functions from the Excel add-in that are exposed by an interface:
Class that is exposed in Excel:
[ComVisible(true)]
...
0
votes
0answers
95 views
XLL AddIn conflicts with another addin xla [closed]
All:
My Excel AddIn (XLL) is written using C#, ExcelDNA, NetOffice. The AddIn has a ribbon with some ribbon buttons. The addIn subscribes to events SheetSelectionChangeEvent, SheetActivateEvent, ...
0
votes
1answer
178 views
Loading XLL in Excel: any difference between Tools->AddIn and File->Open?
I have got an XLL, and want to load it in Excel.
Is there any difference between loading using Tools->AddIn or File->Open other than
it is impossible to unload it if I use File->Open;
it won't be ...
0
votes
0answers
170 views
python win32com AddIn adding failure
My python script (see below) misteriously fails on the line
xlApp.AddIns.Add("C:\Temp\palXll_x32_mt.xll")
of the example below on one computer, but not on the other; paths are the same, xlls are ...
0
votes
2answers
120 views
Microsoft One-Click Installer - User Never Prompted for Trust
I wrote an Excel add-in for a client that does some custom things for 5 users. I wrote it with VS2012 and the interop assemblies for Excel 2010. I published the add-in with the MS one-click ...
0
votes
0answers
215 views
Office Excel 2010 COM Add-In - won't load on debug or after ClickOne
I have done something to my Excel and now I cannot seem to install add-ins correctly.
The add-in ClickOnce installs. It appears in Programs list. It appears in registry (and is set to load ...


