You can do so using the System.Diagnostics.Process.Start method as follows:
// Just specifying the document name will open the appropriate app based on system settings.
Process.Start('Http://msdn.microsoft.com')
// Open a word document in Word.
Process.Start('AWordDocument.doc')
// Or open the app directly:
Process.Start()
Share with