We have completely replaced the computer with a brand new computer and installed all from scratch. Application.FollowHyperlink worked for a few days, then the user went on vacation. When she returned on Aug. 15, windows and office updates auto installed, and the Application.FollowHyperlink stopped working again. No one else in the office (50 users) is having this problem. The current build on the offending computer is Version 2205, Build 15225.20394 Click-To-Run)
Here is the issue:
We have a FE.accdb on 50 computers that has this:
Public Function GoToFolder()
On error GoTo err_Process
Application.FollowHyperlink Forms.aa.MatID.Column(1)
Exit Function
err_Process:
msgbox "Unable to Go To Folder"
End Function
On ONE computer only, it has suddenly stopped working. No error message, no nothing. Just ignores the command entirely. When I step through it, the immediate window shows the correct folder name as Forms.aa.MatID.Column(1), and it then passes through that line with no error message, right to the Exit Function line, but explorer does not open at all.
The function is accessed by command buttons on forms, as well as AutoKeys macro mapped to Ctrl+O. None are working on this one computer.