How do I make a reference to a library that I downloaded?

The library I downloaded is not in a dll form. It has a file called source will all the necessary files in it. How do I make a reference to it so I can use it? I am using visual studio 2013 Help.

 Here is where I got the library from.
http://sourceforge.net/projects/thresher/?source=typ_redirect
What does where you got the library from have to do with anything? If you don't know how to add a reference to a .Dll in Visual Studio or access a non namespace .Dll then that's the real issue isn't it?
With some .Dll's you require Pinvoke statements. I don't know if that's because they're not considered "com" visible or what. Other .Dll's you can browse to and add as references using reference manager. .Dll's are referred to as assemblies as
are executable files.
If you want to use some .Dll then you need to find out from the creator of the .Dll how to "reference" it in order to use it. .Net provides namespaces for many .Dlls. I suppose if a namespace doesn't exist for a .Dll in .Net Framework then you
may have to use Pinvokes for that .Dll.
Dynamic-Link Library Search Order
Simplifying Deployment and Solving DLL Hell with the .NET Framework
La vida loca

Similar Messages

  • How can i make my scrollpane in a way that at the opening of a frame it doe

    How can i make my scrollpane in a way that at the opening of a frame it does not scroll down automatically?
    code is below
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.net.*;
    import javax.swing.JOptionPane.*;
    import java.io.*;
    import javax.swing.colorchooser.*;
    import javax.swing.filechooser.*;
    import javax.accessibility.*;
    import javax.swing.border.*;
    import java.sql.*;
    public class Signup extends JFrame
         JLabel p1,p2,p3,p4,p5,p6,uid,upass,cpass,fname,sname,hint,sl,ed,age,adr,cit,zip;
         JTextField uname,fnamet,snamet,hintt,adrt,adrt1,city,zipcode;
         JPasswordField upassw,cpassw;     
         JComboBox sex,education,agegr;
         Signup()
         Container c=getContentPane();
         c.setLayout(null);
         c.setBackground(Color.white);
         /** JPanel c = new JPanel();
         c.setBackground(Color.white);
         int v = ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
         int h = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
         JScrollPane jsp = new JScrollPane(c, v, h); ***/
    p1=new JLabel("Create Your Icafe!ID",10);
         p2=new JLabel("Personal Information");
         p3=new JLabel("User Address");
         p4=new JLabel("Tell Us About Your Hobbiess (Optional) ");
         p5=new JLabel("Tell us something about what you like. This will help us choose the kind of content to display on           your pages.");
         p6=new JLabel("--------------------------------------------------------------------------------");
    uid=new JLabel("User Id");
         upass=new JLabel("Password");
         cpass=new JLabel("Confirmation Password");
         fname=new JLabel("UserName");
         sname=new JLabel("SurName");
         hint=new JLabel("Hint Question");
    sl=new JLabel("Sex");
         ed=new JLabel("Education");     
         age=new JLabel("Age Group");     
         adr=new JLabel("Address");
    cit=new JLabel("City");
    zip=new JLabel("ZipCode");
         uname=new JTextField(10);
         uname.requestFocus();     
         uname.setToolTipText("UserName");
    upassw=new JPasswordField(10);
         upassw.setToolTipText("Password");
         upassw.setEchoChar('*');
         cpassw=new JPasswordField(10);
         cpassw.setToolTipText("Confirmation Password");
         cpassw.setEchoChar('*');
         fnamet=new JTextField(10);
         fnamet.setToolTipText("FullName");
         snamet=new JTextField(10);
         snamet.setToolTipText("SurName");
         hintt=new JTextField(10);
         hintt.setToolTipText("Hint Question");     
    String[] gender={"[Select one]","Male","Female"};
         sex = new JComboBox(gender);          
    String[] edu={"[Select one]","S.S.C","Inter","Graduate","Post Graduate"};
         education= new JComboBox(edu);     
    String[] ageg={"[Select one]","0 - 15","16 - 35","36 - 70","70 - 100"};
         agegr= new JComboBox(ageg);     
    adrt=new JTextField(15);
         adrt.setToolTipText("Address");
         adrt1=new JTextField(15);
         adrt1.setToolTipText("Address");
         city=new JTextField(15);
         city.setToolTipText("City");
    zipcode=new JTextField(15);
         zipcode.setToolTipText("ZipCode");
         p1.setBounds(200,70,160,30);
         uid.setBounds(350,100,160,30);
         uname.setBounds(400,100,160,30);
         upass.setBounds(335,140,160,30);
         upassw.setBounds(400,140,160,30);
         cpass.setBounds(260,180,160,30);
         cpassw.setBounds(400,180,160,30);
         p2.setBounds(200,220,160,30);
         fname.setBounds(330,260,160,30);
         fnamet.setBounds(400,260,160,30);
         sname.setBounds(335,300,160,30);
         snamet.setBounds(400,300,160,30);
    hint.setBounds(315,340,160,30);     
    hintt.setBounds(400,340,160,30);
         sl.setBounds(370,380,160,30);     
         sex.setBounds(400,380,160,30);
         ed.setBounds(335,420,160,30);     
         education.setBounds(400,420,160,30);
    age.setBounds(330,460,160,30);
    agegr.setBounds(400,460,160,30);
    p3.setBounds(200,500,160,30);
         adr.setBounds(340,540,160,30);
         adrt.setBounds(400,540,160,30);
         adrt1.setBounds(400,580,160,30);
         cit.setBounds(370,620,160,30);
         city.setBounds(400,620,160,30);
    zip.setBounds(590,620,160,30);
    zipcode.setBounds(640,620,160,30);
         Font font = new Font("SansSerif",Font.BOLD, 12);
         setFont(font);
         c.add(p1);
    c.add(uid);
         c.add(uname);     
         c.add(upass);
         c.add(upassw);
    c.add(cpass);
         c.add(cpassw);
    c.add(p2);
    c.add(fname);     
         c.add(fnamet);
    c.add(sname);
    c.add(snamet);
         c.add(hint);
    c.add(hintt);     
    c.add(sl);
    c.add(sex);
    c.add(ed);
         c.add(education);
    c.add(age);
         c.add(agegr);
    c.add(p3);
    c.add(adr);
         c.add(adrt);
         c.add(adrt1);
    c.add(cit);
    c.add(city);
    c.add(zip);
    c.add(zipcode);
         setResizable(false);
         //int a=DO_NOTHING_ON_CLOSE;
         //setDefaultCloseOperation(a);
         show();
         setSize(800,500);
    // Border raisedBorder = new BevelBorder(BevelBorder.RAISED);     
         setContentPane(c);     
    public static void main (String arg[])
         try{
         UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
         }catch(Exception s)
         Signup swu=new Signup();

    just try the following:
    jsp.getVerticalScrollbar().setValue(0);after inserting and adding all your components. this will set the vertical scrollbar up to the very first line.
    regards

  • On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    Click on the Hot Corners..  button and look at the four definitions.  In the picture below, if you moved the cursor to the right top of the screen, it would slide all the applications off the screen as you describe and show the desktop.  Set it to "-" to deactivate.

  • HT1727 I just got a new IPOD! how do I get the music from my library(that was on my old) Ipod onto my new Ipod?

    I just got a new Ipod!!! How do I get the music from my library (that was on my old Ipod) onto my new Ipod?

    Same way you did with the old.
    Open itunes, connect ipod, select what you want, sync

  • HT201272 Does anyone know how to get an episode of a tv programme that never downloaded when I bought a subscription. Episode 1 didn't download and I have all other episodes. I looked at the issues through report a problem but I cannot find an answer.

    Does anyone know how to get an episode of a tv programme that never downloaded when I bought a subscription. Episode 1 didn't download and I have all other episodes. I looked at the issues through report a problem but I cannot find an answer.
    I bought a series pass and unfortunately epsiode 1 didn't download at all. I was watching the downloads and restarting once they stopped as I allow multiple downloads at athe same time

    It sounds like you may have hidden it, in which case you should be able to unhide it : iTunes Store: Hiding and unhiding purchases. (You can't turn off the hiding of items.)
    But you should be keeping and maintaining a backup copy of all of your downloads and not relying on being able to redownload them - any item could be removed from the store by the rights-holders at any time, if they do then you won't be able to redownload them (nor will be able to do redownload items if you move countries).

  • How to show show the songs in my library that don't belong in any playlist?

    I'm sure there's a way to do this and I'm just not thinking hard enough. Does anyone know how I can show the songs in my library that don't belong in any playlists?
    Powerbook 15"   Mac OS X (10.4.8)  

    jaypogi,
    Welcome to Discussions.
    Use one of these scripts:
    Not In Any Playlist creates a text file listing of those songs.
    Not In Any Playlist To Playlist puts them in a playlist.
    Hope this helps.
    M
    17' iMac 800 MHz, 768 MB RAM, 200 GB HD, DL burner   Mac OS X (10.4.8)   iTunes 7.0.2

  • I use OSX version 10.8.5 and iphoto on a MAC.  I upgraded to elements 12 and in IPHOTO it keeps going to Elements 9???  Help please - how do I make it reference the new version???

    I have a MAC and use IPHOTO and had used Adobe Elements 9 as the external Editor and IPHOTO as default.  NOW I upgraded to Adobe elements 12 and IPHOTO only recognoizes Adobe Elements 9???  HOW do I make it go to the new external editor??  I appreciate any help you can provide?

    You need to reset the external image editor in iPhoto's Advanced preference pane to the right version. I assume there's an Adobe Photoshop Elements 12 folder in your Applications folder.  This screenshot is for PSE 10 but would be the same for 12:
    Happy Holidays

  • How I can make a backup of my library in itunes 10.5??

    Hello guys!! I got a trouble, I want to make a backup of my library of iTunes before I got the OSX Lion but when I try to do it I dont find the option!!
    And I dont have a time capsule and I really want to make these backup but in dvd!!!
    Somebody can tell me how I can do it??
    Or this option dissapear in the last update??

    The in-app option disappeared in 10.4, but you can back up the iTunes folder of the Music item in the Finder's sidebar as you would any other.
    (61165)

  • How can I make my hotmail account delete emails that I delete on my phone?

    How can I make my hotmail account delete the messages that I delete on my Droid 3? I selected the "obey the other program" in my hotmail account, but nothing's being deleted.
    Thanks,
    Cesslie

    You're welcome.     Lots of good info. can be found in this forum; if you can't find what you're looking for in a search, just post another question.  Have fun with your Droid!

  • How can I make my email boxes smaller, so that all the stuff does not show after I have opemed it?

    The email that I am reading is very large with a lot of stuff that I do not need to see. How can I make my box smaller?

    ''hhennes [[#question-1047185|said]]''
    <blockquote>
    The email that I am reading is very large with a lot of stuff that I do not need to see. How can I make my box smaller?
    </blockquote>

  • I accidentally combined all of my photos on iphoto to be one event. i have it the way i want it saved on my external harddrive from time machine. how do i make my computer go back to that

    i accidentally combined all of my photos on iphoto to be one event. i have it the way i want it saved on my external harddrive from time machine. how do i make my computer go back to that

    Open Time Machine to the date that you know the iPhoto Library is in the format you want and select and Restore it.
    http://pondini.org/TM/15.html
    Ciao.

  • How do I make comments on a pdf document that was sent to me?

    I have windows XP and Reader 7.0.   Is there a way to enable "edit" so that I can make "comments" on a pdf. document that was sent to me?  withought spending $$$ for pro?

    Thanks Sabian.  It took me a while to figure out that "close Acrobat Reader 7.0" actually meant "delete it".   After loading 10.1.2 I followed the instructions to send my pdf file and Internet Explorer decided to "quit" right in the middle of the process. ??  I'll try to use Chrome to see if that helps.

  • HT203167 some of my digital copies aren't showing up in my library that ive downloaded in the past. how do i retrieve those?

    my digital copies that ive downloaded in the past are not showing up in my library. how can i get those back?

    I have the T4i — you do not need to change codecs, not even for RAW images.
    The best way to import your images/videos from your Rebel is to take the memory card and put it in an sd card reader (the iMacs already have one.) Copy the files to a location on a hard drive (or use the Importer to make a camera archive.) Then import the clips from there. You will be able to preview your clips/images before deciding what to import.

  • HT4914 how do you de-select songs from your library that you dont want as part of iTunes match?

    i have over 36,000 songs in my Ttunes library.  iTunes match only allows 25,000.  there aer songs in my library that i dont need or want as part of iTunes match.  How do you delesect songs/tracks so that they are not part of the total library for iTunes match?  I want to still have the songs as part of my master library but not part of Itunes match so tht i can get in under the 25,000.

    Click here and follow the instructions. You may also need to turn off automatic downloads.
    (111585)

  • How can I remove pictures from my ipod touch that were downloaded from my computer?

    Hi... How can I remove pictures from my IPod  (4th generation) that were downloaded from my

    If the pictures were synced from a computer to the iOS device then they are removed the same way.  Connect the device to the computer.  Tell iTunes what to sync and sync.

Maybe you are looking for

  • Moving iTunes to an external drive

    Can anyone walk me through how to relocate my iTunes software from my full C drive to an external drive?  I can't update the iTunes software or my iPhone, because my C drive is so full.

  • Illustrator CC Rotate Tool Problem

    So I'm not sure if anyone else is experiencing this problem, but it seems I'm having issues with the accuracy of the rotate tool in Illustrator CC. When I rotate an object 90 degrees (either by entering in the rotate angle value or using the free rot

  • Manipulating a XML document

    hello list, I need to be able to "clean" a XML file, creating a version without blank spaces among the tags. So, what I want to do is to create from: <parent attribute1=""> <child attribute2=""/> </parent> this <parent attribute1=""><child attribute2

  • SXMB_ADM_BPE - Automatic BPM Customizing

    Hi Friends, When i have done simple FILE TO IDOC, it worked fine. but when I am trying to implement FILE TO IDOC scenario using BPM, it was failing. in SXI_CACHE, process status code is 99 instead of 0. checked conditions, it was fine. but when i wen

  • Collecting objects for transports

    I'm trying to modify queries. When i open a query, it shows "white" as in it is modifiable. In tranport connection on AWB, when i click on Bex Truck, I see no standard Bex request assigned. I think the query is already assigned to some request, but s