.NETで外部EXE(アプリ)を起動

'メモ帳を起動する
Dim p As System.Diagnostics.Process = _
    System.Diagnostics.Process.Start("notepad.exe")


ネタ元