No related posts.
what does a .dll file do…………………..?
October 30th, 2009 · 3 Comments
Tags: Dll
Tags: Email Spam Uninstall spyware Security Software Trend Micro Registry Cleaner Pc Tools Norton Nod32 Kaspersky Internet Security Hacked Firewall Computer Security Avg Avast Antivirus Ad Aware Monitoring Software Encryption Backup








3 responses so far ↓
1 liketolisten // Oct 30, 2009
http://vlaurie.com/computers2/Articles/dll.htm go here it will explain
2 Stev // Oct 30, 2009
dll stands for Dynamic Link Library, it provides shared functions for programs installed on a Windows computer. Check wikipedia for more info
3 McBain20 // Oct 30, 2009
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.
By using a DLL, a program can be modularized into separate components. For example, an accounting program may be sold by module. Each module can be loaded into the main program at run time if that module is installed. Because the modules are separate, the load time of the program is faster, and a module is only loaded when that functionality is requested.
Additionally, updates are easier to apply to each module without affecting other parts of the program. For example, you may have a payroll program, and the tax rates change each year. When these changes are isolated to a DLL, you can apply an update without needing to build or install the whole program again.
Leave a Comment