Delphi .NET (2) Database (71) Delphi IDE (89) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280)
Exchange Links About this site Links to us 
|
Make Delphi display memory information
This article has not been rated yet. After reading, feel free to leave comments and rate it.
Question:
Does Delphi have further command line arguments? (Switches, options?)
Answer:
There are a few command line switches.
-np = no project, available since Delphi 5
Delphi32.exe -np
-hm = Heap Monitor, available since Delphi 3
Makes Delphi display in the IDE title bar the amount of memory allocated using the memory manager. Displays the number of blocks and bytes allocated. The information gets updated when the IDE is idle.
If you start Delphi with a shortcut from your desktop, just add the desired parameters into the shortcut.
Comments:
|