Results 1 to 6 of 6
  1. #1
    Exquizyth's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    134
    Reputation
    10
    Thanks
    65
    My Mood
    Angelic

    Block Process on listbox [solved]

    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-

  2. #2
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    The items in a listbox are a collection, just iterate through ListBox1.Items and block each of them.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    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)

  3. #3
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,681
    My Mood
    Breezy
    [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 03: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]

  4. #4
    Blendsoft's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Serbia
    Posts
    47
    Reputation
    20
    Thanks
    9
    My Mood
    Inspired
    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]

  5. #5
    Exquizyth's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    134
    Reputation
    10
    Thanks
    65
    My Mood
    Angelic
    yeah it works thnx
    Last edited by Exquizyth; 06-24-2011 at 08:58 AM.

    -Busted-

  6. #6
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Marked solved then.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    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)