Hello,
I am working on a marco in excel that can automatically open a file with link stored in cell B4. Here is the part of code for opening the file:
Range("B4"
.Select
Selection.Hyperlinks(1).Follow NewWindow:=False,
AddHistory:=True
If the file is .txt, then it works fine. But since the file is of a different type (.dxw), a popup window with title "microsoft office" saying that the file can contain virus, and ask user to click "ok" to continue open the file. I would lke to know how to automatically click "ok" button without notifying the user? I'm using office 2000.
Thanks a lot!!!
I am working on a marco in excel that can automatically open a file with link stored in cell B4. Here is the part of code for opening the file:
Range("B4"
Selection.Hyperlinks(1).Follow NewWindow:=False,
AddHistory:=True
If the file is .txt, then it works fine. But since the file is of a different type (.dxw), a popup window with title "microsoft office" saying that the file can contain virus, and ask user to click "ok" to continue open the file. I would lke to know how to automatically click "ok" button without notifying the user? I'm using office 2000.
Thanks a lot!!!