I get this error message.
... is attempting to change the emulated program counter to 0x65204C69.
This address is invalid because it is not even. If this is the latest
version.....
My table is defined as 8 rows, and 4 columns. Column 0 is a checkbox, and
Column 1-3 are text fields. I have my event handler capturing the
TblSelectEvent when the user taps the checkbox as follows. I am trying to
over ride the check box function to do another action. My alert box comes
up correctly, and when I select the OK of the message box I get the above
message.
I would appreciate some help.
Dan
....Code sniplet.....
Boolean ConnectionFormHandleEvent(EventPtr eventP)
{
Boolean handled = false;
FormPtr frmP;
char msg[40];
switch (eventP->eType) {
====<Code Removed>==== (just other case of events)
case tblSelectEvent:
if(eventP->data.tblSelect.column==0){
if(usable[eventP->data.tblSelect.row]){
StrPrintF(msg,"A message will be sent to the
%d",eventP->data.tblSelect.row);
}
else{
StrPrintF(msg,"This UPS is not available
currently");
}
FrmCustomAlert(WarningAlert,msg,"","");
handled=true;
}
break;
default:
break;
}
return handled;
}
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/