Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
Reducing an application's memory requirements
This article has not been rated yet. After reading, feel free to leave comments and rate it.
(by Gordon J. Johnson)
A good way to cut down on the amount of memory used, assuming your program does not use OLE, is to free a DLL:
 | |  | | FreeLibrary(GetModuleHandle('OleAut32'));
| |  | |  | You don't like the formatting? Check out SourceCoder then!
Comments:
|