My question is Y DLL? i know that it saves memory and many process can use 1 DLL file at a time blah blah blah......
but is there any task which can not b achieved without using DLL files?? Please reply in details.
I never understood the logic or lack of it in postings like these...You asked questions like - "My question is Y DLL?" and have statements like "can not b achieved" and "blah blah blah......" and you expect a coherent reply with details.
gerard4143
Nearly a Posting Maven
2,272 posts since Jan 2008
Reputation Points: 512
Solved Threads: 387
>> Y we use DLL files?
Answer: Y not?
>>where we should use DLL files and where not
DLLs are never actually required -- the same thing could be accomplished by using statically-linked libraries. But then that would make the operating system and all the programs on it very very huge. You might not have a large enough disk drive to hold all that duplicate code.
One case is internationalizing programs. Instead of writing a whole program for each language (e.g. Entlish, Spanish, German, Chinese, etc) it can be done by writing language-specific resource DLLs. One program, many language-specific DLLs.
Ancient Dragon
Retired & Loving It
30,046 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,342