ok try to do this:
On your code module add:
Option Explicit
Private 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
Public Function OpenyourFile(strUrl As String) As Long
Dim hWnd As Long
OpenyourFile = ShellExecute(hWnd, vbNullString, strUrl, vbNullString, vbNullString, vbNormalFocus)
End Function
Then on a control of your form add something like:
Private Sub Command1_Click()
OpenyourFile ("Full_Path_of_your_file"
End Sub
This should work with any file.
Hope this helps.