Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [TUT]How to make a Task Manager

[TUT]How to make a Task Manager

Posts 1–15 of 33 · Page 1 of 3
Bombsaway707
Bombsaway707
[TUT]How to make a Task Manager
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
#1 · edited 16y ago · 16y ago
CoderNever
CoderNever
I'm going to try this now..I was trying to code something like this my self..if it works very sweet.
#2 · 16y ago
Bombsaway707
Bombsaway707
Quote Originally Posted by Coder Never View Post
I'm going to try this now..I was trying to code something like this my self..if it works very sweet.
thanks, it should work no problem if it doesnt then PM meh and ill help as much as i can
#3 · 16y ago
Pixie
Pixie
I've been looking every where for a task manager like this,
thanks
#4 · 16y ago
Bombsaway707
Bombsaway707
Quote Originally Posted by PixieCorp View Post
I've been looking every where for a task manager like this,
thanks
no problem glad to help
#5 · 16y ago
CoderNever
CoderNever
I think there is a flaw in your code

Code:
Form atNumber
Located in...

Code:
ListView1.Items(Count).SubItems.Add(Form atNumber(Math.Round(Process.PrivateMemorySize64 / 1024), 0))ListView1.Items(Count).SubItems.Add(Process.Responding)
and...

Code:
ListView1.Items(Count).SubItems.Add(Form atNumber(Math.Round(Process.PrivateMemorySize64 / 1024), 0))ListView1.Items(Count).SubItems.Add(Process.Responding)
is two different lines it should be...

Code:
ListView1.Items(Count).SubItems.Add(Form atNumber(Math.Round(Process.PrivateMemorySize64 / 1024), 0))
ListView1.Items(Count).SubItems.Add(Process.Responding)
#6 · 16y ago
Bombsaway707
Bombsaway707
Quote Originally Posted by Coder Never View Post
I think there is a flaw in your code

Code:
Form atNumber
Located in...

Code:
ListView1.Items(Count).SubItems.Add(Form atNumber(Math.Round(Process.PrivateMemorySize64 / 1024), 0))ListView1.Items(Count).SubItems.Add(Process.Responding)
and...

Code:
ListView1.Items(Count).SubItems.Add(Form atNumber(Math.Round(Process.PrivateMemorySize64 / 1024), 0))ListView1.Items(Count).SubItems.Add(Process.Responding)
is two different lines it should be...

Code:
ListView1.Items(Count).SubItems.Add(Form atNumber(Math.Round(Process.PrivateMemorySize64 / 1024), 0))
ListView1.Items(Count).SubItems.Add(Process.Responding)
yes those were flaws, sometimes when i copy and paste random spaces get added to my code -_- soz about that but i fixed it now
#7 · 16y ago
No5cope
No5cope
is there a way to put in check boxes, and have a button that will kill the "ticked" processes?
#8 · 16y ago
MN
mnpeep
THANK YOU
THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
I've been looking for things to add in my multitool and THIS IS AWESOME!!! i expect it to be in 1.5 (one tool at a time )
#9 · 16y ago
Bombsaway707
Bombsaway707
Quote Originally Posted by mnpeep View Post
THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
I've been looking for things to add in my multitool and THIS IS AWESOME!!! i expect it to be in 1.5 (one tool at a time )
lol no probelm *cough*thanks?*cough*
#10 · 16y ago
IA
Iamazn1
Quote Originally Posted by bombsaway707 View Post
yes those were flaws, sometimes when i copy and paste random spaces get added to my code -_- soz about that but i fixed it now
So Im guessing this was leeched?
#11 · 16y ago
PI
Pixipixel_
Good job mate.
#12 · 16y ago
Bombsaway707
Bombsaway707
Quote Originally Posted by Iamazn1 View Post
So Im guessing this was leeched?
no, when i copy and paste from VB random spaces get added to my code sometimes when its really long
Quote Originally Posted by Pixipixel_ View Post
Good job mate.
thank you
#13 · 16y ago
LE
LegendaryAbbo
Don't be lazy, make it auto refresh.
#14 · 16y ago
Bombsaway707
Bombsaway707
Quote Originally Posted by legendaryhack View Post
Don't be lazy, make it auto refresh.
it is auto refresh in my release in the CA section, but its a really complicated code and i was busy yesterday so i didnt get to post it. Ill post it when i get back from school
#15 · 16y ago
Posts 1–15 of 33 · Page 1 of 3

Post a Reply

Similar Threads

  • Tut: how to make cheeseBy ace76543 in General
    14Last post 19y ago
  • [Request]Tut how to make his own bypassBy BurakG in WarRock - International Hacks
    3Last post 19y ago
  • [Tut]How to Make KoWarrock Account EasyBy EyalZamir in WarRock Korea Hacks
    181Last post 18y ago
  • [TuT] How to make PW and value box for Guns/Superjump/SkyStormer(VB6)By jokuvaan11 in WarRock - International Hacks
    14Last post 19y ago
  • (TUT)how to make your own warrock menuBy aprill27 in WarRock - International Hacks
    0Last post 19y ago

Tags for this Thread

#make#manager#task#tuthow