Dim MyProcess As New System.Diagnostics.Process
MyProcess.StartInfo.CreateNoWindow = True
MyProcess.StartInfo.UseShellExecute = True
MyProcess.StartInfo.WorkingDirectory = "C:\MyDirectory"
MyProcess.StartInfo.FileName = "MyApplication.exe"
MyProcess.StartInfo.Arguments = "MyArgument"
MyProcess.Start()