-
WSMesaka
AskWoody LoungerFor what it’s worth, not only did the Adobe add-in (PDFMaker) cause me much grief in the past, but the Documentum add-in was also notorious for causing the same problem on my machine. In fact, while Adobe caused that problem for me on past configurations/installations, the Documentum one was the most recent culprit.
-
WSMesaka
AskWoody LoungerIf you’d like to try and investigate what may have happened, I’d suggest ruling out VBA code hijacking your commands by selecting Tools: Macro>Macros, then select Word Commands from the Macros in… drop-down, and, from the list of available macros, select either FileSave or FileSaveAs and see if it behaves appropriately. If it does, then there might well be code lurking in either the document or its attached template that hijacks the command. (An alternative to this could be launching the VBA editor [Alt-F11], then, if necessary, selecting View: Immediate Window if it’s not already open, and then typing the command ActiveDocument.Save in the Immediate window and hitting ENTER.)
Another possiblity is that the file IS being saved, and that the Close event is triggering some other code that registers (correctly or not) a subseqent but irrelevant change in the file. I wouldn’t be surprised if conflicts in or between add-ins can cause this, as I have seen many compatibility issues between commercially purchased add-ins (Adobe Acrobat, Reference Manager, SnagIt, etc.) in my years of working with Word.
-
WSMesaka
AskWoody LoungerOK, what I found, and what I’m going with, is that a Combo-box works just as I’d expect. I’ll just set the “Limit to List” property to “Yes”, and it will give me the functionality I expect (i.e. no weird highlighting, no having to click in a field before using its pick-list.)
I guess I just can’t impose my will on Microsoft Access.
-
WSMesaka
AskWoody LoungerYep. And that’s what adds to my confusion. I’m attaching a screen cap that shows both the Form (continuous) and the data property of the first drop-down.
-
WSMesaka
AskWoody LoungerI don’t know if you have this luxury, but one approach that comes to mind is to “hijack” the FileSave command.
The code below will display the Save As… dialog box. If the user clicks “Cancel,” it displays a Message Box; otherwise, it saves the file.
Sub FileSave()
Dim mySaveDialog As Dialog, myAnswer As Integer
Set mySaveDialog = Dialogs(wdDialogFileSaveAs)
myAnswer = mySaveDialog.Show
If myAnswer = 0 Then MsgBox “The file was not saved.”, vbInformation + vbOKOnly, “FileSaveAs Test”
End SubNote that, because this sub is named FileSave, it forces the Save As… dialog box to appear every time the user clicks the Save button or chooses File: Save (which seemed to be in keeping with your needs, since that’s the only time one would have the option of clicking on a Cancel button.) I guess one could name it FileSaveAs, in which case it would only appear when the user selected File: Save As…, but it wouldn’t run when the user is saving a file for the very first time, at least not without customizing the toolbars and menus.
-
WSMesaka
AskWoody LoungerThanks, Hans, as always. I was wondering if I should just resort to the FileSystemObject, if for no other reason than it’s so much more robust and flexible. With respect to the latency: frequently, connecting to a drive for the first time (i.e. clicking on it in Explorer) often takes a couple of seconds here. I was wondering if that time is minimized on subsequent queries (directory calls) because it’s cached or because it becomes (in VB-speak) the “current drive”. I will need to check for the existence of many folders (ostensibly using FolderExists), thus my concern about how to make a share the current drive.
-
WSMesaka
AskWoody LoungerJune 20, 2008 at 9:23 pm in reply to: Updating Links to a Protected Spreadsheet (Excel 2003) #1113678Brilliant! And way better than my (fleeting) idea of opening the Payroll sheet and immediately closing it (after the data was updated). I’m sure there’d be a quick-fingered user ready with a lightning-fast CTRL+Break at the ready…
-
WSMesaka
AskWoody LoungerI’ve been using the “p” prefix to specify the page for many, many years, and I, too, still use the “p” simply because that’s how it was documented in Word’s help file.
FWIW: We prepare documents for submission to regulatory agencies, and regularly work with mutant-documents laden with section breaks, tables, and hidden text, but almost invariably paginated 1 through n. Many times, users have problems printing specific pages from these documents, sometimes even an otherwise simple page range. But, what I have found (and thus practice to this day) is that I never have a problem printing specific pages or page-ranges as long as I use the “pnsn” method of specifying pages, whether or not page re-numbering is used throughout the document.
And, like Hans, learning that the “p” isn’t actually required is very cool and will be useful in my work. Thanks for that!
-
WSMesaka
AskWoody LoungerIn my experience, entering something like p3s1-p6s1, p3s2-p6s2, p3s4-p6s4, while verbose, is arguably the best and most efficient way to ensure you’re printing the right pages from the right sections.
-
WSMesaka
AskWoody LoungerJune 3, 2008 at 3:39 pm in reply to: Using VBA to move a message to a PST file (Outlook 2003) #1111363Thank you both John and Jefferson. I am now using the Folders collection to great success; I was unsure what that collection was a member of, nor whether I could use it rather than the GetDefaultFolder approach. (I know next to nothing about the Outlook object model.)
John, thanks, but I actually wanted to supplement my existing rules with code so that I can quickly move things into specific folders in an ad-hoc fashion. In fact, I am increasingly shying away from rules these days, as I believe I’ve noticed a correlation between the use of rules (of which I currently have about 6) and the noticeable performance hit my machine often takes when Outlook receives mail and runs through all the rules. (At the risk of sounding overly cynical, I seem to have noticed that whenever my machine temporarily stops responding or when it seems to freeze, it almost always coincides with Outlook “receiving” mail from the Exchange server and running the rules I have set up.)
Again, thanks to you both for the help.
-
WSMesaka
AskWoody LoungerEven though I only have IE7 installed (to my knowledge), I read that article hoping it would uncover something, but alas, my configuration was just as they would have me set it. But I did notice one other thing that I THOUGHT I noticed before but which seemed weird: if I open a Woody’s Lounge email and find that clicking on a link throws this “error,” I noticed that if I wait a minute or so (literally), the links will then work as expected.
I swear I am not making this up.
One other nice variable: our company uses a Conifguration Script for IE. I am not at all sure what it does, and I can’t imagine why it would touch any settings that would affect hyperlinks in an email (well, OK, I can imagine why in a company this large.) Nonetheless…
I guess I’ll never know for sure.
-
WSMesaka
AskWoody LoungerNow THIS is bizarre. Within 90 minutes of posting my last message (stating that I can’t duplicate the problem), guess what? I opened an email from the LoungeAdmin from yesterday (the March 19 “daily archive of VB / VBA”, to be precise) and the problem came up again! In between the time I said I couldn’t duplicate it and the time it happened again, the only significant things I remember that I did were 1) downloaded and installed the “Microsoft Office SharePoint Server 2007 Training (Standalone Edition)” msi, and watched a bit of YouTube!
Here’s a picture of the prompt. I’m at a loss.
-
WSMesaka
AskWoody LoungerOK, I’ve been watching the behavior of my machine since I worte this, and, as I expected, the problem has not resurfaced, no matter what I do!
First, a little clarification: the error I was getting was a prompt to select the executable to use to “open” the link. (It wasn’t, as I originally stated, a prompt to save something.)
That said, if anyone else gets that dialog box about what executable to use, I’d like to hear about it.
Thanks!
-
WSMesaka
AskWoody LoungerAs ever, Hans, thanks for your wisdom and patience.
-
WSMesaka
AskWoody LoungerAlso, check the document’s “Vertical Alignment” (found in the Layout tab under File: Page Setup). Normally, it should be set to “top.” (Having it set to “Center” will cause the phenomenon you describe.)
![]() |
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
-
Windows 10: Microsoft 365 Apps will be supported up to Oct. 10 2028
by
Alex5723
3 hours, 8 minutes ago -
Add or Remove “Ask Copilot” Context Menu in Windows 11 and 10
by
Alex5723
3 hours, 15 minutes ago -
regarding april update and may update
by
heybengbeng
4 hours, 44 minutes ago -
MS Passkey
by
pmruzicka
48 minutes ago -
Can’t make Opera my default browser
by
bmeacham
12 hours, 24 minutes ago -
*Some settings are managed by your organization
by
rlowe44
1 hour, 42 minutes ago -
Formatting of “Forward”ed e-mails
by
Scott Mills
11 hours, 19 minutes ago -
SmartSwitch PC Updates will only be supported through the MS Store Going Forward
by
PL1
1 day, 7 hours ago -
CISA warns of hackers targeting critical oil infrastructure
by
Nibbled To Death By Ducks
1 day, 16 hours ago -
AI slop
by
Susan Bradley
6 hours, 6 minutes ago -
Chrome : Using AI with Enhanced Protection mode
by
Alex5723
1 day, 17 hours ago -
Two blank icons
by
CR2
5 hours, 1 minute ago -
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
2 days, 2 hours ago -
End of 10
by
Alex5723
2 days, 4 hours ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
1 day, 2 hours ago -
test post
by
gtd12345
2 days, 10 hours ago -
Privacy and the Real ID
by
Susan Bradley
2 days, 1 hour ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
3 hours, 21 minutes ago -
Cant log on to oldergeeks.Com
by
WSJonharnew
2 days, 15 hours ago -
Upgrading from Win 10
by
WSjcgc50
1 day, 2 hours ago -
USB webcam / microphone missing after KB5050009 update
by
WSlloydkuhnle
1 day, 6 hours ago -
TeleMessage, a modified Signal clone used by US government has been hacked
by
Alex5723
3 days, 6 hours ago -
The story of Windows Longhorn
by
Cybertooth
2 days, 18 hours ago -
Red x next to folder on OneDrive iPadOS
by
dmt_3904
3 days, 8 hours ago -
Are manuals extinct?
by
Susan Bradley
9 hours, 13 minutes ago -
Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu
by
Alex5723
3 days, 18 hours ago -
Network Issue
by
Casey H
3 days, 5 hours ago -
Fedora Linux is now an official WSL distro
by
Alex5723
4 days, 5 hours ago -
May 2025 Office non-Security updates
by
PKCano
4 days, 6 hours ago -
Windows 10 filehistory including onedrive folder
by
Steve Bondy
4 days, 8 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.