Samples in a form load, but it's really the thing (as far as starting a processs).Code:private System.Diagnostics.Process Proc = new System.Diagnostics.Process(); private void Form1_Load(object sender, System.EventArgs e) { Proc.StartInfo.FileName = "notepad.exe"; Proc.Start(); }




Reply With Quote