Hi I am using the following code to get the list of all the running processes.

VB Code:
  1. Imports System.Diagnostics
  2.  
  3.         Dim proc As Process
  4.  
  5.         ListBox1.Items.Clear()
  6.  
  7.         For Each proc In Process.GetProcesses
  8.             ListBox1.Items.Add(proc.ProcessName)
  9.         Next

Now I can't find a way to kill the process selected in the listbox. I think it fills the listbox with the name of exe.

Any idea...???

Cheers.