re: Memory Leak with FrmGotoForm?

2005-10-04 Thread Harry
yep, I have seen this before. Are you doing FrmEraseForm and FrmDeleteForm before switching to the new form? This is how I implement form transitions in general: -- fP = FrmGetActiveForm(); if ( fP ) { FrmEraseForm( fP ); FrmDeleteForm( fP ); } FrmGotoForm( formID );

Memory Leak with FrmGotoForm?

2005-09-30 Thread Anning Chen
Hi, I'm detecting a mem leak of exactly 432 bytes each time I go from one of my forms A to another form B and then back to A. It looks like that form B is leaking the 432 bytes of memory but I have commented out almost all the code except for the line UInt16 currentForm = someFormID; and the in