Hallo,
also das Object Application gibt es eigentlich nur in VBA, dem nach funktioniert Application.HyperlinkFollow in Access oder Excel.
In VB wuerde ich auf die API Funktion ShellExecute
z.B.
=================================================
Declare Function ShellExecute Lib „shell32.dll“ Alias „ShellExecuteA“ (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Declare Function GetDesktopWindow Lib „user32“ () As Long
Set fs = CreateObject(„Scripting.FileSystemObject“)
ShellExecute(GetDesktopWindow(), „Open“, fs.GetAbsolutePathName(dateiname), „“, „“, 1)
[Bei dieser Antwort wurde das Vollzitat nachträglich automatisiert entfernt]