-
WSwcutler
AskWoody LoungerBAM, these are workgroup templates. We don’t get to change people’s normal.dot. And the article begs the question – it talks about using an add-in. Well, I’m TRYING to.
I’m sure the AutoOpen will work. I’m resigned to really wanting one.
-
WSwcutler
AskWoody LoungerGary, yes I am checking to see that the add-in is not already loaded. I can answer what happens if you don’t – it adds it again and the list of add-ins shows it twice, or however many times you add it. You don’t get an error, though.
Re: the single clicking, when I open the document based on the template, I go into Tools | Macro | Macros. All of them are listed and I select AutoNew. Before I click a button to say whether I want to Run or Edit it or what, my toolbar from the add-in shows up. When I checked under templates and add-ins before doing that, the add-in wasn’t there. After the toolbar showed up, I cancelled out of the Macros dialog and checked again – the add-in was there.
You’re right it stays loaded once it has been loaded.
-
WSwcutler
AskWoody LoungerMany thanks for the reply, Gary.
What I’m calling the global template contains subroutines to toggle a watermark and update some properties fields. There’s a toolbar with the watermark toggle button and with style buttons.I was getting confused – the autonew specifically calls the update properties subroutine that’s in the global template, so that doesn’t execute by itself. That complication that I threw in can be ignored.
It sounds like you’re saying I misunderstood what an addin is – it doesn’t stay with the document the way a template and its macros stay with the document. It’s this that I really want confirmed before I do the AutoOpen. Here I went and created this global template so I’d have to only make changes in the one place, and now I have to go and update all the templates.
I CAN just copy the code in the AutoNew to an AutoOpen, minus the call to the properties subroutine. Or I guess, I’d have
Sub AutoNew()
DoTheAddIn
DoThePropertiesSubroutine
and
Sub AutoOpen()
DoTheAddIn
and have DoTheAddIn as a subroutine. Is that what one would do?What triggers the AddIn to get added when I go to look at the macro without actually having to look at it? If code is required in an AutoOpen to ensure the global template is loaded, and I don’t have code there, what makes it get loaded when I select but don’t open the AutoNew? I don’t suppose I NEED the answer to this question. Besides, in my AutoNew, I look around a few places for the AddIn (in case the user is not connected to the LAN), and before giving up ask the user where it is, so I suppose I should want to execute my code rather than have Word do something automatically.
-
WSwcutler
AskWoody LoungerResponding to part of what you want, rather than what you asked, what about making the templates .dot files in their own directory and putting that directory on your desktop or the office toolbar? Then you could click on the icon and double click the template, and that will give you document1 and will not go to the template directory to do the save. That at least would protect your template and clicking the save button would bring up the save as dialog.
If you always, or most often, want to save to a particular directory, you can change the Documents location setting under Tool | Options | File Locations to the directory you want to see most often. When you save a document just created from a template, save as seems to come up with that location.
-
WSwcutler
AskWoody LoungerChas, I’ve now downloaded your templates document. I don’t think I’ll be allowed to put a shortcut to the global template in each user’s Startup folder” and it certainly won’t be done for us on everyone’s PC. That’s why I was trying via the AutoNew macro to get the global template added into the documents.
-
WSwcutler
AskWoody LoungerWhen you say “A big part of the reason for templates is to have a central repository for code, toolbars, etc., rather than putting these into documents”, that’s what I’m trying to do. All my templates are based on a template that uses the code “‘AddIns.Add FileName:=strTMCPath, Install:=True'” to add in the template that’s the central repository, and I added the template to the References. I thought that would make the central repository template available to the documents based on the templates. Is that not true? In the documents, it seems I have to go into Macros and click on AutoNew to get the central repository template to activate. What am I missing?
-
WSwcutler
AskWoody LoungerAugust 2, 2001 at 4:21 pm in reply to: Blank from referenced cell came in as zero (Excel 97) #535687Thanks, Legare. I’m not sure I understand what this says. There might be an alpha value in Sheet2!F1. It could have a value or be blank. Does this copy the cell only if it’s blank, or does it always copy it but if it’s blank turn it into a blank? We need it to do the latter.
-
WSwcutler
AskWoody LoungerAugust 2, 2001 at 4:17 pm in reply to: Blank from referenced cell came in as zero (Excel 97) #535686But if the value in a cell is =Sheetname!F4, why would the value be different in the cell that references the other cell (one a space, one a blank)? If there’s something about the cell doing the reference that converts what comes in, what is it? Not cell format, since they appear to be the same.
-
WSwcutler
AskWoody LoungerI’ve read that doing a Save As instead of Save reduces the file size. And making sure you have the Fast Saves in Tool|Options|Save unticked.
-
WSwcutler
AskWoody LoungerThere was a virus popular some time ago that exhibited the behaviour that save as was always to a template .dot file. You could check for that.
-
WSwcutler
AskWoody LoungerWe have a similar problem in that Excel seems to think the worksheet is full. We wanted to insert a row, but got a message saying “cannot shift non-blank cells off the worksheet”. When we try to delete even one row (either the first supposed-to-be empty row or the last one), we get an hour glass for many minutes. We think the highest cell is K200. There are 5 sheets, all with links to this sheet.
The last person who worked in the spreadsheet does not know Excel very well and does not know what he’d have done to cause this problem. Would clicking the inside border button cause all the cells to be occupied? I suggested he do that when he wanted cell borders. I hope that didn’t cause this.
We tried copying the cells we wanted to a new sheet, but all the references screwed up.
-
WSwcutler
AskWoody LoungerI think I have the answer to checking if the addin is already there:
intAddInCount = AddIns.Count
For X = 1 To intAddInCount
If AddIns.Item(X) = “TemplatesMacroCode.dot” Then
booAddInFound = True
End If
Next X -
WSwcutler
AskWoody LoungerJefferson, now I see what you mean about it being a good idea to check if it’s already installed. But On Error won’t do it, because it’s not an error if it’s already installed. It just installs it again, so you have it however many times you’ve installed it. That’s what’s not such a good idea.
I haven’t figured out how to check if a particular addin is installed. Do I really have to read through all the addins to see if each one matches the one I’m looking for? I don’t even know how to do that. So much for pulling my code out of each template and putting it in a common template. I almost have as much code to just ADD IN the common template as I had IN the common template.
-
WSwcutler
AskWoody LoungerYES, yes, yes. Addin.Add worked on my machine and it worked on another machine that had never seen that addin before. And it worked when I already had the addin loaded and installed, Jefferson, so the coding to handle it when it’s already been loaded doesn’t seem to be required.
So that means I can move my common routines to a separate template and just put the Add code in the individual templates. Now to see whether all that’s required is to have the Add code in the template on which the other templates are based.
-
WSwcutler
AskWoody LoungerI actually tried that. In my AutoNew, I coded:
AddIns(“L:TemplatesProjectWatermark2.dot”).Installed = TrueI also tried running it once the new document was open, in case it just can’t do it as an AutoNew. In both cases, on other computers, I got “Runtime error ‘5941’ The requested member of the collection does not exist”. I copied the template location from the code into the find command and it found the file, so the location is correct and everyone’s drive mapping is the same. It works OK on my own computer, but I think that’s because I manually attached that template once (and can untick it but the delete button is not available to remove it). I need to have it work for other people on the LAN though. Do I have to do something to attach it before I can say installed=true?
I also tried
AddIns(“L:TemplatesProjectWatermark2.dot”).Autoload = True
but that got a compile error: Can’t assign to a read only property.
![]() |
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 |

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
-
Nvidia just fixed an AMD Linux bug
by
Alex5723
5 hours, 42 minutes ago -
50 years and counting
by
Susan Bradley
8 hours, 2 minutes ago -
Fix Bluetooth Device Failed to Delete in Windows Settings
by
Drcard:))
4 hours, 3 minutes ago -
Licensing and pricing updates for on-premises server products coming July 2025
by
Alex5723
16 hours, 46 minutes ago -
Edge : Deprecating window.external.getHostEnvironmentValue()
by
Alex5723
16 hours, 51 minutes ago -
Rethinking Extension Data Consent: Clarity, Consistency, and Control
by
Alex5723
16 hours, 55 minutes ago -
OneNote and MS Word 365
by
CWBillow
18 hours, 44 minutes ago -
Ultimate Mac Buyers Guide 2025: Which Mac is Right For You?
by
Alex5723
18 hours, 55 minutes ago -
Intel Unison support ends on Windows 11 in June
by
Alex5723
19 hours, 8 minutes ago -
April 2025 — still issues with AMD + 24H2
by
Kevin Jones
19 hours, 19 minutes ago -
Windows 11 Insider Preview build 26200.5518 released to DEV
by
joep517
1 day, 6 hours ago -
Windows 11 Insider Preview build 26120.3671 (24H2) released to BETA
by
joep517
1 day, 6 hours ago -
Forcing(or trying to) save Local Documents to OneDrive
by
PateWilliam
1 day, 15 hours ago -
Hotpatch for Windows client now available (Enterprise)
by
Alex5723
1 day, 3 hours ago -
MS-DEFCON 2: Seven months and counting
by
Susan Bradley
4 hours, 38 minutes ago -
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
2 days ago -
Apple backports fixes
by
Susan Bradley
1 day, 7 hours ago -
Win 11 24H2 will not install
by
Michael1950
4 hours, 51 minutes ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
33 minutes ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
13 hours, 20 minutes ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
2 days, 2 hours ago -
Get back ” Open With” in context menus
by
CWBillow
2 days, 15 hours ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
1 day, 7 hours ago -
simple general stupid question
by
WSaltamirano
2 days, 13 hours ago -
April 2025 Office non-Security updates
by
PKCano
3 days, 6 hours ago -
Microsoft wants to hear from you
by
Will Fastie
21 hours, 31 minutes ago -
Windows 11 Insider Preview Build 22635.5160 (23H2) released to BETA
by
joep517
3 days, 9 hours ago -
Europe Seeks Alternatives to U.S. Cloud Providers
by
Alex5723
3 days, 15 hours ago -
Test post
by
Susan Bradley
3 days, 17 hours ago -
Used Systems to delete Temp files Gone WRONG what does this mean?
by
Deo
3 days, 19 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.