The items in a listbox are a collection, just iterate through ListBox1.Items and block each of them.
I know the code but its only block the selected item? how to make if i add a process into listbox then it will block all of the process name inside the listbox?
-Busted-
The items in a listbox are a collection, just iterate through ListBox1.Items and block each of them.
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)
[highlight=vb.net]For Each proc In ListBox1.Items
For Each p In Process.GetProcessByName(proc.ToString)
p.Kill
Next
Next[/highlight]
some craps like that.
Last edited by master131; 06-23-2011 at 04:30 AM.
Donate:
BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9
Handy Tools/Hacks:
Extreme Injector v3.7.3
A powerful and advanced injector in a simple GUI.
Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!
Minion Since: 13th January 2011
Moderator Since: 6th May 2011
Global Moderator Since: 29th April 2012
Super User/Unknown Since: 23rd July 2013
'Game Hacking' Team Since: 30th July 2013
--My Art--
[Roxas - Pixel Art, WIP]
[Natsu - Drawn]
[Natsu - Coloured]
All drawings are coloured using Photoshop.
--Gifts--
[Kyle]
This sounds like my SafeProc
[highlight=vb.net] Private Sub PostThread_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PostThread.Click
If I_Use_Search = False Then
MsgBox("Use search before posting new thread!", MsgBoxStyle.Critical, "Error!")
Else
Call CreateNewThread(Title, Post)
End If
End Sub[/highlight]
yeah it works thnx
Last edited by Exquizyth; 06-24-2011 at 09:58 AM.
-Busted-
Marked solved then.
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)