public void btnShow_Click(object sender, System.EventArgs e){
ArrayList procList =new ArrayList();
string tempName="";
int begpos;
int endpos;
  foreach (Process thisProc in System.Diagnostics.Process.GetProcesses()) {
      tempName=thisProc.ToString();
       begpos = tempName.IndexOf("(")+1;
       endpos=  tempName.IndexOf(")");
       tempName=tempName.Substring(begpos,endpos-begpos);
       procList.Add(tempName);
       }

 }