Use the ShellExecute API function.
Put the following in the General Declaration section of your form.
VB Code:
  1. Private Declare Function ShellExecute _
  2.  Lib "shell32.dll" Alias "ShellExecuteA" ( _
  3.  ByVal hwnd As Long, _
  4.  ByVal lpOperation As String, _
  5.  ByVal lpFile As String, _
  6.  ByVal lpParameters As String, _
  7.  ByVal lpDirectory As String, _
  8.  ByVal nShowCmd As Long) As Long
Then in the click event of a button use code simular to this:
VB Code:
  1. Private Sub Command1_Click()
  2.     ShellExecute Me.hwnd, "Open", "c:\TheFileToOpen.doc", "", "", vbNormalFocus
Best regards