Results 1 to 5 of 5
  1. #1
    o0OpurezO0o's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    behind you.
    Posts
    354
    Reputation
    10
    Thanks
    26
    My Mood
    Sick

    How do i insert Un-Registered dlls?

    I want to make the .rar/.zip extractor in VB.net but i cant open SharpZipLib in VB2008. How do i add it?

    BTW sorry for long away, i was playing on XBL for the last time i had.

  2. #2
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Add it as reference?



  3. #3
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Like Blubb said, right-click on your project in the Solution Explorer and click on Add Reference. Click on the 'Browse' tab and find the DLL. Make sure it's in the same folder as your project. Then import it at the start of the form that you want to use it in.

  4. #4
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by master131 View Post
    Like Blubb said, right-click on your project in the Solution Explorer and click on Add Reference. Click on the 'Browse' tab and find the DLL. Make sure it's in the same folder as your project. Then import it at the start of the form that you want to use it in.
    It doesn't have to be in the same folder initially. Just set the "Copy Local" property of the reference to "True" and when you build your project it will create the .dll beside your .exe

    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)

  5. #5
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Quote Originally Posted by Jason View Post


    It doesn't have to be in the same folder initially. Just set the "Copy Local" property of the reference to "True" and when you build your project it will create the .dll beside your .exe
    Ah ok, didn't know that. You learn something new everyday