-
WSjacksonmacd
AskWoody LoungerNovember 11, 2016 at 9:50 pm in reply to: Foxit PDF Writer overwrites existing files without warning #1583929I’ve been using the Foxit PDF Writer that comes with the Foxit Reader for years. In the last couple of weeks, I noticed that it started adding a number to the end of the file name when I selected an existing file. Prior to that, it would offer the standard “Replace existing?” type of prompt. When I went into the Preferences for the Printer, it has only two file-handling options: “Overwrite existing file” and “Add a numeric suffix.” I’m not sure how this was changed to the suffix option, but when I changed to the overwrite option, it simply overwrote any file that happened to exist, without any warning whatsoever.
I’ve been communicating with Foxit support, but they seem to be puzzled that I’m even asking this question. That is, they seem to think that overwriting an existing file without alerting the user with a confirmation dialog is desirable behavior. Well, there might be situations where this is true, but not if that is the only option offered. After all, it is extremely easy to accidentally click on a file name while trying to navigate folders. The other option of automatically adding a suffix is obviously not desirable if you wanted to replace the file.
Has anyone else run into this? Why would an interface designer think that a “replace after confirmation” option is not the proper default for a potentially destructive command (and at least make that a choice)?
So glad that I am not the only one tearing my hair out over this behaviour. I agree with you completely – it’s a dumb design.
-
WSjacksonmacd
AskWoody LoungerI reviewed the referenced article again, and found some additional information. After much experimentation, I was able to get XL2016 to open as it should. Below is what I posted on the article that was referenced earlier.
+++++++++++++++++++++
I would have agreed with you about 24 hours ago, but my computer finally opens XL2016 when I double-click on a filename in Explorer. Also, the jumplist of files in the Excel shortcut on my Windows taskbar works properly by opening XL2016.None of these steps worked independently, but ***something*** finally clicked to make it work. Perhaps all four are required???
1. Set the association between XLS and XL2016
2. Use the “update” function built into XL2016. Access from Excel via File > Account > Office updates
3. Manually edit the Windows Registry. By searching through the Registry, I found three instances where “Excel Protocol” was associated with Office 2010, instead of Office 2016 as it should be, and one instance where it was associated with Office 2016. I created a new .reg file to change the 2010 entries to match the 2016 entry.
4. Using Control Panel > Programs and Features > Office 2016 > Change, I was able to repair the O2016 installation.ONLY after completing the final step did the file association work properly (and then it took many seconds for XL2016 to launch. That behaviour seems to have disappeared today). Furthermore, a Registry-monitoring program that I use alerted me that the Repair in step 4 tried to create an association with O2010, instead of the correct O2016. I rejected that change, and kept the O2016 association. Overall, the repair seems fragile.
I don’t claim that any of these steps will work for anyone else, nor that it will continue to work on my computer. I only write this to provide a glimmer of hope for anybody else struggling with this inexcusable behaviour. What is Microsoft doing by allowing such a glaring bug to remain for so long on their flagship product? It’s beyond comprehension.
++++++++++++++++
Microsoft responded with yet another “we are working on the problem” reply.
-
WSjacksonmacd
AskWoody LoungerThanks for your response – I had actually seen that article earlier, tried some of the suggestions, and gave up after reading about 20 entries. The article spans 15 pages of entries, from about October 2015 to July 2016 (maybe 250 entries). If this problem has been discussed in the Windows Secrets forum earlier, and I overlooked it in my search, I apologize for not finding it.
I am not sure if your answer was intended to be 1) you will find the answer here, or 2) you will find that many people are frustrated by this problem and there is no definitive answer. Upon first seeing your reply, I thought it was #1, but now I am not sure. Regardless, here is a typical response from about 10 days ago, so it seems to be an unresolved issue that Microsoft has not dealt with adequately:
I worked my way through dozens of entries, finally jumped to the end (page 14) and see that there is still no solution. I have Windows 10/Office 365 Pro on my desktop, laptop, and Surface. Surface works just like you would expect, but I don’t use that for development. On the desktop, I can’t get to an Excel file from the File Manager, but I can get to them from Excel’s memory list. The only way I can get to one that isn’t on the list is to (1) create a new Excel file imposter with the name of the file I want to open (FileName.xlsx), put one number in a field, and save it. Then I do a copy/paste of the real FileName.xlsx to replace the imposter, and tell mr. filemanager that yes, I really do want to replace it. Then Excel has a recent record of having talked with FileName.xlsx and when it is asked to open it, lo and behold it opens the old one in the new place. Then I have to do a “Save As” to put it where I really want it.
If this sounds like an idiotic approach, it is. It seems to me that a problem this fundamental could/would have been fixed LONG AGO. (I reinstalled Office 365 Pro yesterday, and that is no better.)Here’s hoping that Microsoft cleans up an unresolved bug that seems to be causing a lot of confusion, and makes their solution easy to find and implement.
-
WSjacksonmacd
AskWoody LoungerSorry – posted in wrong forum. Have added new thread in Spreadsheets forum.
-
WSjacksonmacd
AskWoody LoungerJuly 18, 2016 at 5:46 pm in reply to: Unexpected new behaviour; XL 2016 opening files via VBA #1570694I went back to my previous version, and you are correct: .Open raises an error. I had trapped that error in my original code, but incorrectly described it in the original posting. sorry about that. However, there is still a difference in behaviour with XL 2016. The program hangs at the .Open command, rather than jumping to the error handler.
I heard back from the client that the new version works properly with XL2016 on her computer, so this is an exercise only to satisfy my curiosity what causes the difference on her computer. I appreciate any insight you can offer, but understand if you do not pursue it any further.
In the code below, FileName will contain a fully-qualified name of the file, including an XLS extension supplied by the calling program. Previous versions and my development computer work OK if the file extension is omitted. I have presumed this is a separate issue.
+++++++++++++++++
Calling function snippet
+++++++++++++++i = OpenXL(sPath & CustomerID)
if i 0 Then
LoadCustomerXLS = i
End If++++++++++++++++++++
Modified version below
++++++++++++++++++++Function OpenXL(FileName As String) As Integer
Dim objXL As Object
‘ get a reference to the Excel object
If Not GetRunningApplication(“Excel.Application”, objXL) Then
MsgBox “there is a problem with Excel”
OpenXL = 1
Exit Function
End IfOn Error GoTo error_XL
With objXL
If Len(Dir(FileName)) > 0 Then
.Workbooks.Open (FileName)
Else
.Workbooks.Add
.activeworkbook.SaveAs FileName
End If
.Visible = True
End With
OpenXL = 0
Exit Functionerror_XL:
Select Case Err.Number
Case 1004
With objXL
.Workbooks.Add
.activeworkbook.SaveAs (FileName)
.Visible = True
End With
Case ElseMsgBox “There is a problem in Automation to Excel …” & Err.Description, vbInformation
Err.Clear
OpenXL = 1
Set objXL = NothingEnd Select
End Function
+++++++++++++++++++++++++
Original version below
+++++++++++++++++++++++++Function OpenXL(FileName As String) As Integer
Dim objXL As Object
‘ get a reference to the Excel object
If Not GetRunningApplication(“Excel.Application”, objXL) Then
MsgBox “there is a problem with Excel”
OpenXL = 1
Exit Function
End IfOn Error GoTo error_XL
With objXL
.Workbooks.Open (FileName)
.Visible = True
End With
OpenXL = 0
Exit Functionerror_XL:
Select Case Err.Number
Case 1004
With objXL
.Workbooks.Add
.ActiveWorkbook.SaveAs (FileName)
.Visible = True
End With
Case ElseMsgBox “There is a problem in Automation to Excel …” & Err.Description, vbInformation
Err.Clear
OpenXL = 1
Set objXL = NothingEnd Select
End Function
-
WSjacksonmacd
AskWoody LoungerJuly 16, 2016 at 1:38 pm in reply to: Unexpected new behaviour; XL 2016 opening files via VBA #1570500Good idea, but… On my computer, the files are located in a random folder of the C: drive which is not referenced in the Trust Center. However, the folder also appears as a subfolder of My Documents by means of a Soft Junction. My Trust Center contains nothing but the default locations, none of which reference My Documents. I doubt very much whether the client’s Trust Center contains anything besides the defaults.
However, it’s worth experimenting on her client’s computer to see if referencing the actual file locations might make a difference.
Thanks for the idea!
-
WSjacksonmacd
AskWoody LoungerDang… what a way to get recognition in the Windows Secrets newsletter. Oh well…
-
WSjacksonmacd
AskWoody LoungerMea culpa – a typo in a fieldname explains the problem.
Also, DLookup fails “quietly” if a fieldname is entered incorrectly. Rather than crashing in VBA, or giving a meaningful error message in the Immediate Window, it just returns an incorrect value, and carries on… -
WSjacksonmacd
AskWoody LoungerIt worked. I removed McAfee using Control Panel, and Windows Defender became activated. There was a bit of futzing to get everything to work properly (e.g. *something* turned off the WiFi, and it was a pain to figure that out). Seems to be running now. Thanks both for the input.
-
WSjacksonmacd
AskWoody LoungerMartin – thank you for your thoughtful response.
Jack
-
WSjacksonmacd
AskWoody Loungerchowur and JockOlder Inspiron computer that is not on the list at the URL listed. None of the keystrokes had any effect.
Tried using Device Manager to disable the touchpad, but it only has “uninstall” option, and I am I bit nervous about doing that…
Disabling the ghost mice had no effect when I tried several hours ago, now it seems to work. Go figure…Thanks for your input!
Jack
-
WSjacksonmacd
AskWoody LoungerFurther info. Using the keyboard and Device Manager, I can delete the HID-compiant mouse entries. The deletion survives a Windows logoff and logon. However, if I restart Windows, then the multiple HID-compliant mouse entries return, and the mouse jumps all over the screen.
If I delete the mice again, and use Device Manager to “scan for hardware changes”, then two instances of HID-compliant mouse reappear on the Device Manager list. This occurs WITHOUT an external mouse being connected to the computer. Only the touchpad is physically available to the computer.
The computer is virtually unusable in this state. I sure could use some help. (Writing this from a different computer).
-
WSjacksonmacd
AskWoody LoungerThank you!
-
WSjacksonmacd
AskWoody LoungerIan and Joe – you are both correct, of course. It’s just like deleting a shortcut from the desktop. I should have realized that myself!
-
WSjacksonmacd
AskWoody LoungerThe Options checkbox is checked, as suggested, but it still does not delete the file.
On the other hand, when I go to the Music > Artists section of the WMP, and press Delete, a confirmation dialog appears warning me that I am about to delete the file. This dialog does not appear when I attempt to delete the file from the Auto playlist. The behaviour from the two different locations is different. Am I doing something wrong, or is that the expected behaviour?
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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
-
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
2 hours, 51 minutes ago -
Windows 10 finally gets fix
by
Susan Bradley
11 hours, 45 minutes ago -
AMD Ryzen™ Chipset Driver Release Notes 7.04.09.545
by
Alex5723
13 hours, 5 minutes ago -
Win 7 MS Essentials suddenly not showing number of items scanned.
by
Oldtimer
7 hours, 38 minutes ago -
France : A law requiring messaging apps to implement a backdoor ..
by
Alex5723
1 day, 2 hours ago -
Dev runs Windows 11 ARM on an iPad Air M2
by
Alex5723
1 day, 2 hours ago -
MS-DEFCON 3: Cleanup time
by
Susan Bradley
2 hours, 33 minutes ago -
KB5056686 (.NET v8.0.15) Delivered Twice in April 2025
by
lmacri
22 hours, 23 minutes ago -
How to enable Extended Security Maintenance on Ubuntu 20.04 LTS before it dies
by
Alex5723
1 day, 14 hours ago -
Windows 11 Insider Preview build 26200.5562 released to DEV
by
joep517
1 day, 18 hours ago -
Windows 11 Insider Preview build 26120.3872 (24H2) released to BETA
by
joep517
1 day, 18 hours ago -
Unable to eject external hard drives
by
Robertos42
4 hours, 42 minutes ago -
Saying goodbye to not-so-great technology
by
Susan Bradley
1 hour, 13 minutes ago -
Tech I don’t miss, and some I do
by
Will Fastie
5 hours, 46 minutes ago -
Synology limits hard drives
by
Susan Bradley
2 days, 22 hours ago -
Links from Microsoft 365 and from WhatsApp not working
by
rog7
2 days ago -
WhatsApp Security Advisories CVE-2025-30401
by
Alex5723
3 days, 4 hours ago -
Upgrade Sequence
by
doneager
2 days, 21 hours ago -
Chrome extensions with 6 million installs have hidden tracking code
by
Nibbled To Death By Ducks
1 day, 3 hours ago -
Uninstall “New Outlook” before installing 2024 Home & Business?
by
Tex265
1 day, 20 hours ago -
The incredible shrinking desktop icons
by
Thumper
4 days, 1 hour ago -
Windows 11 Insider Preview Build 22635.5240 (23H2) released to BETA
by
joep517
4 days, 3 hours ago -
Connecting hard drive on USB 3.2 freezes File Explorer & Disk Management
by
WSJMGatehouse
1 day, 2 hours ago -
Shellbag Analyser & Cleaner Update
by
Microfix
19 hours, 39 minutes ago -
CISA warns of increased breach risks following Oracle Cloud leak
by
Nibbled To Death By Ducks
4 days, 12 hours ago -
Outlook 2024 two sent from email addresses
by
Kathy Stevens
3 days, 16 hours ago -
Speeding up 11’s search
by
Susan Bradley
2 days ago -
HP Pavilion Will Not Wake Up After Being Idle for Longer Period
by
WSwalterwood44
2 days, 12 hours ago -
Make a Windows 11 Local Account Passwordless
by
Drcard:))
5 days, 2 hours ago -
Ubuntu 25.04 (Plucky Puffin)
by
Alex5723
5 days, 9 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.