Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Process[] arrProcess=Process.GetProcesses(strMachineName);
Process tmp= Process.GetProcessById(Int32.Parse (strKey),strMachineName);
Process tmp=Process.GetProcessByName(strProcName);
pSelectedProcess.Kill();
tmp.Exited += new EventHandler(OnProcessExited);
private void ProcessExited(object sender, EventArgs e)
{
Process tmp2 = (Process)sender;
MessageBox.Show(tmp2.ProcessName + " ID: " + tmp2.Id.ToString() + " is exiting");
}