Got it - linefeedChr
Just as a service to those of you who are trying to (or should) implement
this in your app, here's some sample code:
case keyDownEvent:
switch(eventP->data.keyDown.chr)
{
case vchrNextField:
case linefeedChr:
case chrHorizontalTabulation:
MoveCursorToNextField(); // This one's on you to write
handled = true;
break;
case vchrPrevField:
MoveCursorToPreviousField(); // This one too
handled = true;
break;
default:
handled = false;
break;
}
break;
-J
"Jason Feinberg" <[EMAIL PROTECTED]> wrote in message
news:37876@palm-dev-forum...
>
> I am finishing up implementing field switching by grafitti stroke (i.e.
> vchrNextField, chrHorizontalTabulation, etc) and want to catch the user
> doing an Enter stroke (top right to bottom left). What is the variable
name
> for this stroke?
>
> Thanks,
> Jason
>
>
>
>
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/