Lorraine Chin wrote:

> For fields editable by
> the user, I've never had any problem letting the system handle the
> user's tapping on the field to select it and letting the user write in
> the text.  The text should appear in the field as he's writing.  Of
> course this assumes the form has been initialized and drawn so your
> field object is available.
> frmP = FrmInitForm(YourFormId);
> FrmSetActiveForm(frmP);
> FrmSetEventHandler(frmP, YourFormHandleEvent);
> 
> and YourFormHandleEvent() gets the frmOpenEvent and calls
> FrmDrawForm(frmP).

AND provided that YourFormHandleEvent() doesn't eat events that
it shouldn't.  In other words, it's important to be very careful
never to return true from an event handler when you haven't
actually handled the events.  Otherwise, the system will never
see them.

  - Logan

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/

Reply via email to