A DLL is a library that contains code and data that can be used by more than one program at the same time. For example, in Windows operating systems, the Comdlg32 DLL performs common dialog box related functions. Therefore, each program can use the functionality that is contained in this DLL to implement an Open dialog box. This helps promote code reuse and efficient memory usage.
for more info u can follow the link
http://support.microsoft.com/kb/815065
2006-12-04 15:27:33
·
answer #1
·
answered by Manjunath M 2
·
0⤊
1⤋
Dynamic Link Libraries (DLLs) are compiled libraries of code which programmers may link to without having access to the source code, and which can be shared by several applications. The operating system only loads the DLL into memory if at least one application is using it. That single instance of the DLL is then shared by any further applications which need to use it.
2015-06-05 01:02:00
·
answer #2
·
answered by Bhavesh 1
·
1⤊
0⤋
Dynamic Link Library.
Unlike the name, we can link to a dll both statically and dynamically based on our requirements. A dll is supposed to contain reusable functionality which is shared across applications. But most of the dll's are normally in use by a single application.
2006-12-04 15:34:50
·
answer #3
·
answered by Karthik 1
·
2⤊
0⤋
DLL is Dynamic Link Library. It links one file to another, such as an icon on your desktop. When you click on it, the DLL links that icon to the actual .exe or execute file that opens the program.
2006-12-04 15:33:13
·
answer #4
·
answered by Anonymous
·
1⤊
0⤋
dll = dynamically linked library
2006-12-04 15:33:18
·
answer #5
·
answered by Anonymous
·
1⤊
0⤋
Dynamic Link Library is a code file, usually a system file that allows programmers (usually .NET programmers) to share, reuse and export written code and data written to it.
2016-05-01 05:17:36
·
answer #6
·
answered by ? 1
·
0⤊
0⤋
http://www.webopedia.com/TERM/D/DLL.html
2006-12-04 15:33:47
·
answer #7
·
answered by kalusz 4
·
0⤊
1⤋