> As part of the application I'm writing to remotely navigate between fields > on the Palm I attempted to use the vchrNextField and vchrPrevField keycodes. > However, for some reason nothing seems to happen. > ... > (Note: It's NOT a question of my supporting these codes as part of my > forms - I am sending these codes to OTHER applications (e.g. Address Book, > Date Book etc.)
Have a look at the Address and Datebook source code included in the SDK. Datebook doesn't used vchrNextField or vchrPrevField anywhere. Address uses them in the Address Edit form; EditHandleEvent in AddrEdit.c is looking for a keyDownEvent which is "virtual" (ie. has the virtualKeyMask bit set in the .modifiers field) and has a .chr field containing vchrNextField or vchrPrevField. You can even try running Address with a debugger, so you can set breakpoints and see why it's not handling your vchrNextField keyDownEvent. -- Danny @ Palm -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
