Tagged Questions
.xla is the file extension for pre- Excel 2007 addins written using VBA. XLA Addins are a special type of workbook that contains VBA code or functions integrated into the Excel or VBA environment.
5
votes
1answer
678 views
Excel 2003 - How to build my own XLA?
How can you make the .xla file if you want to create your own xla? I have the code, classes, shapes, etc....what is the process to making an xla file to point to? I know that I have to put it in my ...
2
votes
2answers
1k views
How do I create a toolbar in an XLA document?
How do I create a toolbar for Excel using an XLA document?
2
votes
3answers
1k views
Change .xla File with MSBuild
I'm trying to create a build script for my current project, which includes an Excel Add-in. The Add-in contains a VBProject with a file modGlobal with a variable version_Number. This number needs ...
1
vote
1answer
67 views
Creating/using custom VBA libraries in Excel
I've been working on a project for my team at work to use. The Excel 2003 spreadsheet is on an NT NFS so they can all use it. I like XLAs, but one annoying thing about them is it seems that they don't ...
1
vote
1answer
156 views
Excel Add in VSTO don't work when other XLA add in are installed
I have developed an Excel Add in with C#, and was working fine.
But since i had installed another Add in written in VBS in XLA file, my C# Add in doesn't work anymore...
Does anyone faced this ...
1
vote
1answer
153 views
Building an XLA from Source Programmatically
I have a (version controlled) folder of exported components of a VBA addin (i.e. a lot of cls, frm, frx, bas and txt files). Can someone give me a build script (can be a VB script, or something more ...
1
vote
0answers
429 views
Add-in makes Excel crash when starting minimized
I start Excel from within my C# WinForms application using Process.Start(...) (this has a reason). I want to start it in background, without distracting the user, so I try to start it minimized or ...
1
vote
2answers
621 views
How to stop Excel storing the absolute path to an XLA?
I have an XLA file that is to be deployed to a number of users in the organisation as an Excel add-in. My intention is to deploy it to a directory in the user's "documents and settings" folder in ...
1
vote
1answer
365 views
1
vote
3answers
571 views
Excel VBA Recalculate Selection
I've got some Excel spreadsheets that are hitting the database pretty hard (100+ queries against the general ledger table... yikes!). Refreshing just the sheet I'm on (SHIFT+F9) is helpful in some ...
1
vote
2answers
375 views
Error while creating a table style in excel
I am using the following function to create a TableStyle:
Public Function CreateTableStyle()
ActiveWorkbook.Unprotect
Dim objTS As TableStyle
On Error Resume Next
Set objTS = ...
0
votes
0answers
27 views
when will UDF path (in a xla) be shown in Excel and how to avoid it?
I read several posts online and believe this is true.
When you install an xla addin, use some UDF in it and save spreadsheet.
Then you open up it in another PC where the same xla addin is installed ...
0
votes
1answer
59 views
VBA created with Excel 2003 loaded OK in Excel 2007, but there's nothing in Project tree of VB editor
I have created a VBA in excel 2003 and save it in xla format. This AddIn add a new menu and some submenu in toolbar of Excel. All work well until I upgrade to Office 2007, then I open the xla file. No ...
0
votes
0answers
367 views
Excel 2010 .XLA addin problem
I have an excel xla addin that works fine in office 2007. I added the .xla using the add-in manager in excel 2010 so that it automatically loads everytime I open excel 2010. For some reason, I have ...
0
votes
3answers
157 views
VBA: detecting if a library is available at run-time
I have an xla file that refers to some other Excel add-ins that may or may not be present on the target machine. Currently Excel fails on loading the xla with a "Compile error: Can't find project or ...
0
votes
1answer
240 views
Recover from fatal error in excel VBA Workbook_Open?
I stumbled on a way to crash excel in Workbook_Open while making an .xla It's still a toy project, so I've been able to just delete it and start over (and now I'm coming back with version control and ...
0
votes
2answers
175 views
Why is IE 7 renaming downloaded XLA files as XLS when saving?
I have an Excel Add-In file I'm publishing on an intranet (plain ol' HTTP download, not an attachment in Sharepoint, etc.).
With IE 7, the user click the link and selects "Save", only to have the ...
0
votes
0answers
298 views
Unable to delete a pivot table style from excel work book
I am using the follwowing code to delete a table style from an excel file:
Set objTS = ActiveWorkbook.TableStyles("MyTableStyle")
If Not objTS Is Nothing Then
objTS.Delete
End If
I am able to ...
0
votes
1answer
88 views
Deleting TableStyle from excel
I have added a TableStyle to excel workbook using the statement:
ActiveWorkbook.TableStyles.Add("PivotTable SS")
I can delete it using:
ActiveWorkbook.TableStyles("PivotTable SS").Delete
How can ...
0
votes
4answers
3k views
How to remove xla from xls without renaming or deleting xla file?
I need to get rid of an XLA (excel add-in) from a spreadsheet, but everything on the web seems to point to renaming/deleting the xla file.
This is not an option as the xla file is used by many other ...