2
votes
2answers
46 views

Add in installed and referenced

I want to check if addin is installed and is referenced. The below code checks for add in is installed or not. How can i check if its referenced in excel. By Refernced i mean is Tools > Addins > ...
1
vote
2answers
131 views

Add Workbook based on Template

I am writing a small VBA add-in for Excel 2003, the idea is that the add-in looks in a directory for any '.xlt' files and for each one it finds it adds a button to a 'Templates' menu which provides a ...
0
votes
3answers
106 views

Erf() in VBA-Excel code doesn't work in Excel 2003

I need to calculate the error function, Erf(), in my VBA Excel program. I have implemented something like that: aux_A = -Application.WorksheetFunction.Erf(p) Previously, in Excel 2007, I install ...
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
0answers
68 views

ExcelDna.loader error for already registered addins

I am new to C# with VBA, I already have a Excel Application which uses a XLL(dll) developed using C#. When I created a new New xll(developed with C#) and registered it with a new Excel . It is giving ...
0
votes
0answers
145 views

Sometimes popup window disappears in Excel

I am working on excel vsto project. I have implemented ProgressBar window to show background progress. I have written one public method to run this background form. It's working properly but sometime ...
1
vote
0answers
39 views

Excel VBA: How to turn code into a full on toolbar tool? [duplicate]

Possible Duplicate: VBA control over the ribbon? It's amateur-hour here at home again and I could use some assistance. So I've written up about five real nifty pieces of code to perform ...
0
votes
1answer
332 views

How to use a custom excel function (or add-in) in Access 2010

Is there a way I can reuse a set of custom functions originally written in Excel 2010 in Access2010? I am writing an excel add-in which provides custom functions to the excel users. Some of these ...
0
votes
1answer
2k views

Add hover labels to a scatter chart that has it's data range updated dynamically in Excel 2007

Hi I want to add labels to the plotted points on a scatter chart in Excel, however my charts data set range changes whenever my macro updates it... so my first question is: Is there a way to set the ...
3
votes
1answer
367 views

Auto install and enable Excel Add-in using Setup Factory

I have some VBA code and saved it as Excel Add-in. I need a method to install this Excel Add-in automatically. I want to create an installer so that my users can just run the installer to install the ...
1
vote
1answer
255 views

Worksheet_SelectionChange event in xla add-in

Is to possible to trigger Worksheet_SelectionChange event in xla add-in. I put the code in Worksheet module of add-in. but it did not enter into this module. My target is to set the comment box in the ...
1
vote
1answer
359 views

How to Create VBA Add-In with Shared Codes for All Excels?

I'm writing VBA codes for multiple Excel spreadsheets, which will be shared with others from time to time. At some point I find there are lots of duplications in my works. So I want to find a way to ...
2
votes
1answer
1k views

Automatically install excel VBA add-in

I have written excel VBA add-in file (.xlam). I also have a exported ribbon customization (.exportedUI). How can I create an installer so that my users can just run the installer to install the ...
0
votes
2answers
844 views

Read the calculated values from Excel using AddIn Formulas and Microsoft Object Library

we are trying to retrieve a calculated value from a cell which has add-In formulas in it. The sample add-in "myUtilityl.xla" is working properly in excel. It retrieves value for the addin function ...
1
vote
1answer
1k views

Programmatically Save Excel Add-In

I have a worksheet updated occasionally by users that is used to make an Add-In (.XLAM). The Add-In is located on a network share and users link to it. I am looking to enable users to easily update ...
1
vote
2answers
366 views

Excel 2007 shadow copy?

My question is about Excel add-ins and VBA code. This is the situation: There are 2 Excel files; one is just a normal Excel sheet, one is a .xla add-in with VBA code which is stored on a network ...
0
votes
1answer
1k views

Excel VBA macro workbook startup - security warning - automatic update of links disabled

I've created an add-in and installed it, but now when I open Excel I get an error pop-up telling me that the add-in file is a security risk and that automatic updating of links is disabled. I've ...
5
votes
4answers
3k views

Use Excel VBA to fill out and submit Google Docs form

I'm trying to do something like this post but with Excel VBA. I would like to submit a response on a google docs form each time a button is pressed on an Excel add-in. The addin will be an XLA file ...
2
votes
1answer
6k views

Saving Excel Add-In in Windows 7

I have an Excel add-in I am developing that works fine in Windows XP. However, I just got a hold of Windows 7 Professional and now I cannot save this add-in, either manually from the VBA Editor or ...
0
votes
1answer
263 views

Excel COM Add-In dialog interrupts script

I have written an Excel COM Add-In in C++ for automation of Excel with VBA. It contains an own dialog showing some general informations about the Add-In. Now i create a button in Excel that opens the ...
0
votes
1answer
997 views

How to create excel add-in (excel 2003 or previous version) package with activeX dll?

I am new to excel add-in prgramming and I am having a existing excel add-in project need to modify. The plug-in has 2 parts, one is programmed in VB and compiled into a ActiveX DLL file, the other ...
0
votes
5answers
3k views

Process for updating Excel add-in?

I have an Excel 2003 add-in deployed in one of our departments that occasionally needs updated. What currently happens is that I publish the new version from my machine to a central location, this ...
0
votes
1answer
2k views

C#: Excel 2007 Addin, How to Hook Windows Activate and Deactivate Events

I am writing an Excel 2007 Addin. using VS2008 and .net 3.5, C#. I catched Microsoft.Office.Interop.Excel.Application's WindowActivate and WindowDeActivate events. It was surprised to know that ...
1
vote
3answers
2k views

How do i save code changes to an Excel VBA add-in?

I've made an add-in for Excel in VBA and now I need to make changes to the code, but the file won't save. I open the .xlam file, I make the changes, ctrl-S to save with no errors popping up, close ...