you can't quite remove the title bar. the Process class just starts a process and thats it. you can hide the process if you like using the ProcessStartInfo class() and setting the WindowStyle to hidden for example.
System.Diagnostics.Process theProc = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo thePSI = new System.Diagnostics.ProcessStartInfo("path\file.exe");
thePSI.WorkingStyle = ProcessWindowStyle.Hidden;
theProc.Start(thePSI);
|