I have not tried them, but here are a few options:
.
.
Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _ (ByVal hwnd As Long, ByVal lpszOp As String, _ ByVal lpszFile As String, ByVal lpszParams As String, _ ByVal LpszDir As String, ByVal FsShowCmd As Long) _ As Long
More from Microsoft
.
Registry Editing:
- Click "Start" and select "Run."
- In the Open dialog box, type regedit and click OK.
- In the registry editor, find and select one of the following registry keys: HKEY_CURRENT_USER \ Software \ Microsoft \ Office \ 11.0 \ Common HKEY_CURRENT_USER \ Software \ Policies \ Microsoft \ Office \ 11.0 \ Common
Notes:
Note
More from Microsoft1 and Microsoft2
.
- VBA code to modify the registry:
Option Explicit Function killHyperlinkWarning() Dim oShell As Object Dim strReg As String strReg = "Software\Microsoft\Office\11.0\Common\Security\Dis ableHyperlinkWarning" Set oShell = CreateObject("Wscript.Shell") oShell.RegWrite "HKCU\" & strReg, 1, "REG_DWORD" End Function
found here
source share