How To Make A Task Manager In Visual Basic 2008 (Works in visual basic 2010)

preview_player
Показать описание
Visual Basic.NET - Simple Task Manager. Just a simple tutorial on how to make a program that shows all processes and allows you to end then. Thanks to AeonHack for help.

Codes:
Form1_Load
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(Form atNumber(Math.Round(Process.PrivateMemor ySize64 / 1024), 0))
ListView1.Items(Count).SubItems.Add(Proc ess.Responding)
ListView1.Items(Count).SubItems.Add(Proc ess.StartTime.ToString.Trim)
ListView1.Items(Count).SubItems.Add(Proc ess.Id)
Count += 1
Next
ToolStripStatusLabel1.Text = "Processes: " & ListView1.Items.Count

End Process:
For Each Process As ListViewItem In ListView1.SelectedItems
System.Diagnostics.Process.GetProcessByI d(Process.SubItems(4).Text).Kill()
Next
Form1_Load(Nothing, Nothing)


Timer1_Tick
Form1_Load(Nothing, Nothing)

Рекомендации по теме
Комментарии
Автор

try this folkssss.
First. Download the video
Second Play it
Third goto modeia speed
fourth CHANGE it... LOL so easy

yuji
Автор

oki... Sorry Guys.. I'll Try to do Slowly in Next Video ....

DilukaPerera
Автор

if you pause at 0:00 you can obviously see that the video is not his and as KingAaronHacks said he is speeding it up to avoid copyright infringement.
He is obviously a 12 yo kid who thinks he is a hacker
ohh and btw thanks to Diluka perera for making the actual video

kia
Автор

i know all of them but can you just tell me how to solve the access denied problem in Process.GetProcess(string machineName); i have created a NetworkCredential. but not works.

PkDeveloper
Автор

hey..did you know how to get CPU Frequency

budakRancak
Автор

Dont act like you made it.
You are really making a fool out off yourself.

PCLanguages
Автор

Slow down this fuckin' video. '-.-

HipHopLife