At 05:03 AM 4/26/2008, Robert Meek wrote: >Morning all, > Just curious to know what the best indicators and/or utilities >available to help one see the changes in memory and resource usage as it >changes while a Delphi Win32 application is running.
The Task Manager (Ctrl-Alt-Del) "Processes" page is pretty good for seeing what resources are in use. You can use View/Show Columns to select those resources you're most interested in observing. Note that because Delphi uses a sub-allocator, Task Manager will only reflect the bulk memory allocated to a Delphi program, not all of which might be in use at any given time. >And also if any of you have or know of any "special" techniques for >minimizing their use while the program is running but not currently in use. I don't think that's necessary. Because Windows pages not-in-use programs to its spool file, if a program is not being used it will not be in RAM anyway. > Any comments welcome! > > >from Robert Meek dba "Tangentals Design" >e-mail: [EMAIL PROTECTED] >Freelance Windows Programming for XP and Vista >Also proud to be a Moderator of the "Delphi-List" at elists.org > >"Reality cannot be explained...only enjoyed or endured as your current >perspective allows!" > > >_______________________________________________ >Delphi mailing list -> [email protected] >http://lists.elists.org/cgi-bin/mailman/listinfo/delphi Regards, Sid Gudes PIA Systems Corporation [EMAIL PROTECTED] _______________________________________________ Delphi mailing list -> [email protected] http://lists.elists.org/cgi-bin/mailman/listinfo/delphi

