Mega Code Archive

 
Categories / Delphi / System
 

Make Ur App run Faster and Smoother, use less memory

Title: Make U'r App run Faster and Smoother, use less memory Snippet : procedure showform; Implemention procedure showform; with TFormName.Create(Application) do try ShowModal; finally Free; end; Call Form : Unit1.ShowForm; //Use unit name. Cause of this, less memory is used ,because the form is stored in the application and having them# pre-created takes the form into primary memory. So just remove it from the dpr file. Compress it with upx or somthing. Because the smaller the file, the less space it use's on primary memory which allows you cpu to process apps faster. Want more tips,or help just contact me. ?Why? do i know this, Im writing an application hacker, so ive picked some documentation