[edit]
Work address
1950 Summit Park Dr Orlando, FL 32810
[edit]
making this easier to look up
p.StartInfo.FileName = filename p.StartInfo.Arguments = arguments p.StartInfo.RedirectStandardError = true p.StartInfo.RedirectStandardOutput = true p.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(StdOutDataHandler) p.ErrorDataReceived += new System.Diagnostics.DataReceivedEventHandler(StdErrDataHandler) p.StartInfo.CreateNoWindow = true p.StartInfo.UseShellExecute = false p.Start() p.BeginErrorReadLine() p.BeginOutputReadLine() p.WaitForExit()
