First add A status strip, then add a Toolstripstatuslabel1 and for its text put
"processes: 0"
Then add a list view. Under the listview properties go to view then select details.
Then under listview properties go to Gridlines and select true
Now go to columns and add 5 columns they should look like this
in this order

After thats done double click the form and put:
Code:
Dim Process As New Process()
Dim Count As Integer = 0
ListView1.Items.Clear()
For Each Process In Process.GetProcesses(My.Computer.Name)
On Error Resume Next
ListView1.Items.Add(Process.ProcessName)
ListView1.Items(Count).SubItems.Add(FormatNumber(Math.Round(Process.PrivateMemorySize64 / 1024), 0))
ListView1.Items(Count).SubItems.Add(Process.Responding)
ListView1.Items(Count).SubItems.Add(Process.StartTime.ToString.Trim)
ListView1.Items(Count).SubItems.Add(Proces*****)
Count += 1
Next
ToolStripStatusLabel1.Text = "Processes: " & ListView1.Items.Count
After that is done add in a button. Double click the button and put:
Code:
For Each Process As ListViewItem In ListView1.SelectedItems
System.Diagnostics.Process.GetProcessById(Process.SubItems(4).Text).Kill()
Next
Form1_Load(Nothing, Nothing)
^make the button text "
Kill Process"^
Now add a timer and under the timer put:
Code:
Form1_Load(Nothing, Nothing)
Now debug and it should work, if you need more help PM me.
My Final Result(I added some stuff but its still basically the same):

Thanks me if i helped
