Thread: DLLs? anyone?

  1. #1
    In your face... ha ha ha Liger86's Avatar
    Join Date
    Dec 2002
    Location
    Motorcity Capital
    Posts
    321

    Question DLLs? anyone?

    I was reading a product overview at microsoft.com about VC++ .net and I come across a DLL. I know what it stands for, 'cause its pretty obvious, but I don't understand how would one use them.

    I know its a library, but of what? Trems? Words? Pics?

    And do people that use C++ (not vc++) use them?

    I did a *.dll search on my c drive and nearly overheated my brain!
    From Ukraine with love!

    Internationally known – widely respected

    - Digitally yourz -

  2. #2
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331

  3. #3
    In your face... ha ha ha Liger86's Avatar
    Join Date
    Dec 2002
    Location
    Motorcity Capital
    Posts
    321
    ok, i feal stupid

    maybe i should of had done a search on my question like the forum rules say!
    From Ukraine with love!

    Internationally known – widely respected

    - Digitally yourz -

  4. #4
    Registered User jawwadalam's Avatar
    Join Date
    May 2002
    Posts
    131
    Description at Microsost sit about dll files ..
    Link of Description.. is
    http://www.microsoft.com/accessdev/a...12.HTM#Dynamic
    Dynamic-link libraries (DLLs) are a key feature of Microsoft Windows. As the name suggests, a DLL is a library of procedures that applications can link to and use at run time rather than link to statically at compile time. This means that DLLs can be updated independently of the application, and many applications can share a single DLL. Microsoft Windows is itself composed of several DLLs that contain the procedures all applications use to perform their activities, such as displaying windows and graphics, managing memory, and so on. These procedures are sometimes referred to as the Windows application programming interface (API).
    One day you will ask what more important to you..
    I will say my life..
    and You will leave me with even knowing
    that
    You are my Life (L)

  5. #5
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    Originally posted by Liger86
    ok, i feal stupid

    maybe i should of had done a search on my question like the forum rules say!
    No questions are stupid, even if you didn't search :P

    Good luck, happy programming.

  6. #6
    In your face... ha ha ha Liger86's Avatar
    Join Date
    Dec 2002
    Location
    Motorcity Capital
    Posts
    321
    Ok, maybe I don't feal that stupid...

    But, those guys didn't give good enough description of what I want to know.

    Like how do you make them. And do people who program with c++ use it, and to what extent
    From Ukraine with love!

    Internationally known – widely respected

    - Digitally yourz -

  7. #7
    Redundantly Redundant RoD's Avatar
    Join Date
    Sep 2002
    Location
    Missouri
    Posts
    6,331
    Originally posted by Liger86
    Ok, maybe I don't feal that stupid...

    But, those guys didn't give good enough description of what I want to know.

    Like how do you make them. And do people who program with c++ use it, and to what extent
    Well of course they use it, and often to a very large extent, such as with games. To create them you can select "dll" on MSVC++ off the new menu, to find out what to do from there a quick search for "dll" on the boards or "creating a dll" on google will help.

  8. #8
    Registered User
    Join Date
    Nov 2002
    Posts
    491
    How you make and how you use DLL's is very depended on OS and compiler. In Windows you just need to call loadLibrary() if i recall, Although I may be off.

    Unices have files similar to dll's as well. They are called shared objects.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Protection of DLLs
    By Poche in forum C# Programming
    Replies: 5
    Last Post: 06-04-2009, 08:30 PM
  2. Some doubts on DLLs
    By BrownB in forum Windows Programming
    Replies: 1
    Last Post: 05-30-2007, 02:25 AM
  3. standart dlls
    By keeper in forum C++ Programming
    Replies: 3
    Last Post: 07-05-2006, 07:32 PM
  4. Can't load string from resource DLL's string table
    By s_k in forum Windows Programming
    Replies: 4
    Last Post: 07-15-2003, 06:43 AM
  5. question about DLL's and class functions
    By btq in forum Windows Programming
    Replies: 2
    Last Post: 02-25-2003, 06:08 AM