If you wont to turn off nav focus ring try to add following lines in frmOpen event:
FrmNavStateFlagsType navStateFlags; Err navErr; navErr = FrmGetNavState (frmP, &navStateFlags); navStateFlags &= ~kFrmNavStateFlagsObjectFocusMode; navErr = FrmSetNavState (frmP, navStateFlags); It is a code from Palm sample apps. I didn't check if it works correct. You have to check. Some more info can be found at website: http://www.palmos.com/dev/support/docs/palmos/PalmOSReference/Form.html# 1131325 Regards, Gregory -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
