CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 1999
    Location
    Germany
    Posts
    2

    What is a dll file and how does it work



    I am getting involved in databases and pulling information from one application and putting it into another. I know this is done using a dll file, however, I don't know how they work or what dll even stands for.


    Please help an old COBOL programmer here

  2. #2
    Join Date
    May 1999
    Posts
    53

    Re: What is a dll file and how does it work



    dll = Dynamic Link Library

    Code is loaded dynamically and can be executed.



  3. #3
    Join Date
    Mar 1999
    Posts
    1

    Re: What is a dll file and how does it work



    Excerpt from MSDN:

    *** dynamic-link library (DLL) ***

    A .DLL file that contains one or more functions compiled, linked, and stored separately from the processes that use them. The operating system maps the DLLs into the process's address space when the process is starting up or while it is running. The process then executes functions in the DLL. See also process.



  4. #4
    Join Date
    May 2001
    Location
    Detroit , MI
    Posts
    11

    Re: What is a dll file and how does it work

    www.mindcracker.com
    find the dll link on the left side corner, u should be able to get the basics from it.


    satV

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured