First question: Is there a way I can place an image on FrmAlert?
Secondly: I've got some menus set up on the top menubar, and am
having some troubles with them. For example, I have one menu, Help, and
it's got three options on it: About, Contact, and Help. When I use
FrmAlert, and set up the MESSAGE correctly, no matter what menu option I
select, only the first one's message text gets shown (Help->About).
Here's a snippet of my code (I 'borrowed' the menu structure from
another piece of source code in another Palm program, which works -- this
code, however, shows nothing but menu option #1):
case ctlSelectEvent:
if ( event->data.ctlEnter.controlID== buttonID_About ) {
FrmAlert (alertID_Plucker);
handled = 1;
}
if ( event->data.ctlEnter.controlID== buttonID_Contact ) {
FrmAlert (alertID_Contact);
handled = 2;
}
if ( event->data.ctlEnter.controlID== buttonID_Help ) {
FrmAlert (alertID_Help);
handled = 3;
}
break;
case menuEvent:
handled = HandleCommonMenuItems(event->data.menu.itemID);
FrmAlert (alertID_About);
handled = 1;
}
break;
Any help is appreciated.