Hi all,
I recently installed the two patches for CW5 to IDE 3.3.2 and POSE
21.d29. I now receive and error when returning to my main form. The error
refers to reading to an unallocated chunk of memory. It occurs when the
following code reaches FrmDrawForm(frmP);. When I receive the error I click
the error debug button and in the stack window the ide is on StrLen which is
preceded by CtlDrawControl, FrmDrawForm and InfoFormHandleEvent. On my form
I have 1 table, 4 repeating btns,1 list with a popup trigger and 2 bitmaps.
The odd thing is that I did not get an error prior to adding the patches and
the new POSE and this does work on the my HH. Can any offer any suggestions
as to what my be causing this problem? Thank You
case ctlSelectEvent:
if (eventP->data.ctlSelect.controlID == InfoDoneButton)
frmP = FrmGetActiveForm();
FrmReturnToForm(MainForm);
frmP = FrmGetActiveForm();
FrmDrawForm(frmP); ********** error occurs here ************
SetPopLabel(eventP,frmP);
WinDrawLine(5,135,150,135);
}
Brian O'Grady