Board index » delphi » ** Help ** - Keeping track of Heap Space Avail in Delphi II
Moebius
![]() Delphi Developer |
Sat, 27 Mar 1999 03:00:00 GMT
|
Moebius
![]() Delphi Developer |
Sat, 27 Mar 1999 03:00:00 GMT
** Help ** - Keeping track of Heap Space Avail in Delphi III have asked this before but I didn't get an answer so come on all you Q. How can I keep track of heap space used in Delphi 2.0. I want to For Delphi 1.0 I used the MemAvail function, but this isn't available in Let's get those brains working :) Thanks |
Ray Lischn
![]() Delphi Developer |
Sat, 27 Mar 1999 03:00:00 GMT
Re:** Help ** - Keeping track of Heap Space Avail in Delphi IIOn Tue, 8 Oct 1996 13:00:38 +0100, Moebius <R...@mtechsec.demon.co.uk> Quote>Q. How can I keep track of heap space used in Delphi 2.0. I want to -- Ray Lischner, Tempest Software, Inc., Corvallis, Oregon, USA Author of Secrets of Delphi 2 (http://www.tempest-sw.com/secrets/) |
Angelito Dizo
![]() Delphi Developer |
Sun, 28 Mar 1999 03:00:00 GMT
Re:** Help ** - Keeping track of Heap Space Avail in Delphi IIOn Tue, 8 Oct 1996 13:00:38 +0100, QuoteMoebius <R...@mtechsec.demon.co.uk> wrote: and have not gotten any reply. Meanwhile I use GetHeapStatus().TotalALoocated and TotalFree to give me an idea if memory is properly returned. I suspect though that this may not be completely accurate, but this is the best I know so far, without having to install commercial software. Please let me know if you find out anything new or different. Lito Lito Dizon |
Moebiu
![]() Delphi Developer |
Mon, 29 Mar 1999 03:00:00 GMT
Re:** Help ** - Keeping track of Heap Space Avail in Delphi IIIn article <23498.adi...@mail.us.net>, Angelito Dizon Quote>Please let me know if you find out anything new or statusbar of my MDI application. What I have observed is that even opening a simple dialog like an 'About' window seems to leak memory (ie the value doesn't return to the initial value before I opened the dialog *for the first time*). ie Boot Application - TotalFree 21912 What happened to the 24 missing bytes? The about-window code could not be simpler ie procedure TMainForm.HelpAboutItemClick(Sender: TObject); You should see what happens when I open a child window, it's like a I'm have observed a similar results in Delphi 1.0, any ideas ? -- |
Samuel Liddicot
![]() Delphi Developer |
Sun, 02 May 1999 03:00:00 GMT
Re:** Help ** - Keeping track of Heap Space Avail in Delphi IIDate :02:28:41 PM Wed 13 Nov 1996 GMT I don't think its a leak, cos it only happened the first time you showed -- Moebius <R...@mtechsec.demon.co.uk> wrote in article Quote> In article <23498.adi...@mail.us.net>, Angelito Dizon |
wob..
![]() Delphi Developer |
Fri, 07 May 1999 03:00:00 GMT
Re:** Help ** - Keeping track of Heap Space Avail in Delphi IIYou might try to not have the aboutwindow at all. You can do so with Now try again and see your heap... L8r, MW. Quote>> I have used HeapStatus.TotalFree to display the free memory on the |