Re: System.Diagnostics.Process.Start

Tech-Archive recommends: Fix windows errors by optimizing your registry

From: Cor Ligthert (notmyfirstname_at_planet.nl)
Date: 11/15/04


Date: Mon, 15 Nov 2004 11:28:50 +0100

Toby,

Did you already try it this way.
(Typed here so watch typos)
\\\
 Dim ProcessStartInfo As New Process
 ProcessStartInfo.FileName = stb.ToString
ProcessStartInfo.WorkingDirectory = [local dir]
ProcessStartInfo.WindowStyle = WindowStyle.Maximized
Process.StartInfo.Arguments = "whatever"
ProcessStartInfo.UseShellExecute = True
ProcessStartInfo.CreateNoWindow = False
ProcessStartInfo.Start
///
I hope this helps?

Cor