A Lounge Luminary (was it HansV?) once posted code so that xla file could be emailed to each user and the code automatically installed the xla, deleting any previous versions. I’ve searched and searched with no luck. Does anyone remember this or know where it is?
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Deploying xla (Office 2003)
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Deploying xla (Office 2003)
- This topic has 6 replies, 3 voices, and was last updated 20 years, 4 months ago.
AuthorTopicWSgellwood
AskWoody LoungerDecember 16, 2004 at 6:02 pm #413600Viewing 3 reply threadsAuthorReplies-
WSsdckapr
AskWoody LoungerDecember 16, 2004 at 7:10 pm #913487Jan Karel Pieterse, a MS Excel MVP, does not list it on these pages, but in post 191952 he explains how you can download one of his programs (there is a link under his name in the post) and examine the install code (which is unprotected).
Steve
-
WSsdckapr
AskWoody LoungerDecember 16, 2004 at 7:10 pm #913488Jan Karel Pieterse, a MS Excel MVP, does not list it on these pages, but in post 191952 he explains how you can download one of his programs (there is a link under his name in the post) and examine the install code (which is unprotected).
Steve
-
WSpieterse
AskWoody LoungerDecember 17, 2004 at 12:31 pm #913831For your convenience:
Option Explicit Dim vReply As Variant Dim AddInLibPath As String Dim CurAddInPath As String Const sAppName As String = "Name Manager" Const sFilename As String = sAppName & ".xla" Const sRegKey As String = "FXLNameMgr" ''' RegKey for settings Sub Setup() vReply = MsgBox("This will install " & sAppName & vbNewLine & _ "in your default Add-in directory." & vbNewLine & vbNewLine & "Proceed?", _ vbYesNo, sAppName & " Setup") If vReply = vbYes Then On Error Resume Next Workbooks(sFilename).Close False If Application.OperatingSystem Like "*Win*" Then CurAddInPath = ThisWorkbook.Path & "" & sFilename AddInLibPath = Application.LibraryPath & "" & sFilename Else CurAddInPath = ThisWorkbook.Path & ":" & sFilename AddInLibPath = Application.LibraryPath & sFilename 'syntax differs from Win End If On Error Resume Next 'This appears to be redundant FileCopy CurAddInPath, AddInLibPath If Err.Number 0 Then SomeThingWrong Exit Sub End If With AddIns.Add(FileName:=AddInLibPath) .Installed = True End With Else vReply = MsgBox(prompt:="Install Cancelled", Buttons:=vbOKOnly, Title:=sAppName & " Setup") End If End Sub Sub SomeThingWrong() If Application.OperatingSystem Like "*Win*" Then vReply = MsgBox(prompt:="Something went wrong during copying" & vbNewLine _ & "of the add-in to your add-in directory:" _ & vbNewLine & vbNewLine & Application.LibraryPath & "" _ & vbNewLine & vbNewLine & "You can install " & sAppName & " manually by copying the file" _ & vbNewLine & sFilename & " to this directory yourself and installing the addin" _ & vbNewLine & "using Tools, Addins from the menu of Excel." _ & vbNewLine & vbNewLine & "Don't press OK yet, first do the copying from Windows Explorer." _ & vbNewLine & "It gives you the opportunity to ALT-TAB back to Excel" _ & vbNewLine & "to read this text.", Buttons:=vbOKOnly, Title:=sAppName & " Setup") Else vReply = MsgBox(prompt:="Something went wrong during copying" & vbNewLine _ & "of the add-in to your add-in directory:" _ & vbNewLine & vbNewLine & Application.LibraryPath _ & vbNewLine & vbNewLine & "You can install " & sAppName & " manually by copying the file" _ & vbNewLine & sFilename & " to this directory yourself and installing the addin" _ & vbNewLine & "using Tools, Addins from the menu of Excel." _ & vbNewLine & vbNewLine & "Don't press OK yet, first do the copying in the Finder." _ & vbNewLine & "It gives you the opportunity to Command-TAB back to Excel" _ & vbNewLine & "to read this text.", Buttons:=vbOKOnly, Title:=sAppName & " Setup") End If End Sub Sub Uninstall() vReply = MsgBox("This will remove the " & sAppName & vbNewLine & _ "from your system." & vbNewLine & vbNewLine & "Proceed?", vbYesNo, sAppName & " Setup") If vReply = vbYes Then If Application.OperatingSystem Like "*Win*" Then CurAddInPath = ThisWorkbook.Path & "" & sFilename AddInLibPath = Application.LibraryPath & "" & sFilename Else CurAddInPath = ThisWorkbook.Path & ":" & sFilename AddInLibPath = Application.LibraryPath & sFilename 'syntax differs from Win End If On Error Resume Next Workbooks(sFilename).Close False Kill AddInLibPath DeleteSetting sRegKey MsgBox " The " & sAppName & " has been removed from your computer." _ & vbNewLine & "To complete the removal, please select the " & sAppName _ & vbNewLine & "in the following dialog and acknowledge the removal", vbInformation + vbOKOnly Application.CommandBars(1).FindControl(ID:=943, recursive:=True).Execute End If End Sub
-
WSgellwood
AskWoody Lounger -
WSgellwood
AskWoody Lounger
-
-
WSpieterse
AskWoody LoungerDecember 17, 2004 at 12:31 pm #913832For your convenience:
Option Explicit Dim vReply As Variant Dim AddInLibPath As String Dim CurAddInPath As String Const sAppName As String = "Name Manager" Const sFilename As String = sAppName & ".xla" Const sRegKey As String = "FXLNameMgr" ''' RegKey for settings Sub Setup() vReply = MsgBox("This will install " & sAppName & vbNewLine & _ "in your default Add-in directory." & vbNewLine & vbNewLine & "Proceed?", _ vbYesNo, sAppName & " Setup") If vReply = vbYes Then On Error Resume Next Workbooks(sFilename).Close False If Application.OperatingSystem Like "*Win*" Then CurAddInPath = ThisWorkbook.Path & "" & sFilename AddInLibPath = Application.LibraryPath & "" & sFilename Else CurAddInPath = ThisWorkbook.Path & ":" & sFilename AddInLibPath = Application.LibraryPath & sFilename 'syntax differs from Win End If On Error Resume Next 'This appears to be redundant FileCopy CurAddInPath, AddInLibPath If Err.Number 0 Then SomeThingWrong Exit Sub End If With AddIns.Add(FileName:=AddInLibPath) .Installed = True End With Else vReply = MsgBox(prompt:="Install Cancelled", Buttons:=vbOKOnly, Title:=sAppName & " Setup") End If End Sub Sub SomeThingWrong() If Application.OperatingSystem Like "*Win*" Then vReply = MsgBox(prompt:="Something went wrong during copying" & vbNewLine _ & "of the add-in to your add-in directory:" _ & vbNewLine & vbNewLine & Application.LibraryPath & "" _ & vbNewLine & vbNewLine & "You can install " & sAppName & " manually by copying the file" _ & vbNewLine & sFilename & " to this directory yourself and installing the addin" _ & vbNewLine & "using Tools, Addins from the menu of Excel." _ & vbNewLine & vbNewLine & "Don't press OK yet, first do the copying from Windows Explorer." _ & vbNewLine & "It gives you the opportunity to ALT-TAB back to Excel" _ & vbNewLine & "to read this text.", Buttons:=vbOKOnly, Title:=sAppName & " Setup") Else vReply = MsgBox(prompt:="Something went wrong during copying" & vbNewLine _ & "of the add-in to your add-in directory:" _ & vbNewLine & vbNewLine & Application.LibraryPath _ & vbNewLine & vbNewLine & "You can install " & sAppName & " manually by copying the file" _ & vbNewLine & sFilename & " to this directory yourself and installing the addin" _ & vbNewLine & "using Tools, Addins from the menu of Excel." _ & vbNewLine & vbNewLine & "Don't press OK yet, first do the copying in the Finder." _ & vbNewLine & "It gives you the opportunity to Command-TAB back to Excel" _ & vbNewLine & "to read this text.", Buttons:=vbOKOnly, Title:=sAppName & " Setup") End If End Sub Sub Uninstall() vReply = MsgBox("This will remove the " & sAppName & vbNewLine & _ "from your system." & vbNewLine & vbNewLine & "Proceed?", vbYesNo, sAppName & " Setup") If vReply = vbYes Then If Application.OperatingSystem Like "*Win*" Then CurAddInPath = ThisWorkbook.Path & "" & sFilename AddInLibPath = Application.LibraryPath & "" & sFilename Else CurAddInPath = ThisWorkbook.Path & ":" & sFilename AddInLibPath = Application.LibraryPath & sFilename 'syntax differs from Win End If On Error Resume Next Workbooks(sFilename).Close False Kill AddInLibPath DeleteSetting sRegKey MsgBox " The " & sAppName & " has been removed from your computer." _ & vbNewLine & "To complete the removal, please select the " & sAppName _ & vbNewLine & "in the following dialog and acknowledge the removal", vbInformation + vbOKOnly Application.CommandBars(1).FindControl(ID:=943, recursive:=True).Execute End If End Sub
Viewing 3 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Login screen icon
by
CWBillow
2 hours, 34 minutes ago -
AI coming to everything
by
Susan Bradley
23 minutes ago -
Mozilla : Pocket shuts down July 8, 2025, Fakespot shuts down on July 1, 2025
by
Alex5723
10 hours, 2 minutes ago -
No Screen TurnOff???
by
CWBillow
10 hours, 23 minutes ago -
Identify a dynamic range to then be used in another formula
by
BigDaddy07
10 hours, 56 minutes ago -
InfoStealer Malware Data Breach Exposed 184 Million Logins and Passwords
by
Alex5723
22 hours, 33 minutes ago -
How well does your browser block trackers?
by
n0ads
8 hours, 50 minutes ago -
You can’t handle me
by
Susan Bradley
1 hour, 18 minutes ago -
Chrome Can Now Change Your Weak Passwords for You
by
Alex5723
1 hour, 27 minutes ago -
Microsoft: Over 394,000 Windows PCs infected by Lumma malware, affects Chrome..
by
Alex5723
1 day, 9 hours ago -
Signal vs Microsoft’s Recall ; By Default, Signal Doesn’t Recall
by
Alex5723
13 hours, 25 minutes ago -
Internet Archive : This is where all of The Internet is stored
by
Alex5723
1 day, 10 hours ago -
iPhone 7 Plus and the iPhone 8 on Vantage list
by
Alex5723
1 day, 10 hours ago -
Lumma malware takedown
by
EyesOnWindows
22 hours, 40 minutes ago -
“kill switches” found in Chinese made power inverters
by
Alex5723
1 day, 19 hours ago -
Windows 11 – InControl vs pausing Windows updates
by
Kathy Stevens
1 day, 19 hours ago -
Meet Gemini in Chrome
by
Alex5723
1 day, 23 hours ago -
DuckDuckGo’s Duck.ai added GPT-4o mini
by
Alex5723
1 day, 23 hours ago -
Trump signs Take It Down Act
by
Alex5723
2 days, 7 hours ago -
Do you have a maintenance window?
by
Susan Bradley
11 hours, 59 minutes ago -
Freshly discovered bug in OpenPGP.js undermines whole point of encrypted comms
by
Nibbled To Death By Ducks
1 day, 9 hours ago -
Cox Communications and Charter Communications to merge
by
not so anon
2 days, 10 hours ago -
Help with WD usb driver on Windows 11
by
Tex265
2 hours, 45 minutes ago -
hibernate activation
by
e_belmont
2 days, 19 hours ago -
Red Hat Enterprise Linux 10 with AI assistant
by
Alex5723
2 days, 23 hours ago -
Windows 11 Insider Preview build 26200.5603 released to DEV
by
joep517
3 days, 2 hours ago -
Windows 11 Insider Preview build 26120.4151 (24H2) released to BETA
by
joep517
3 days, 2 hours ago -
Fixing Windows 24H2 failed KB5058411 install
by
Alex5723
1 day, 22 hours ago -
Out of band for Windows 10
by
Susan Bradley
3 days, 7 hours ago -
Giving UniGetUi a test run.
by
RetiredGeek
3 days, 14 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.