first you need to import System.Diagnostics.Process
Imports System.Diagnostics.Process
Then within a function use this code
Try
'give a file path as a string to Start method.
Start("filename.html")
Catch
'use any code here if file can not be opened.
End Try