Re: blocking the carriage return when the keyboard is displayed.

2004-04-08 Thread Eric Potter
This is impossible. When the keyboard is displayed, it is like a modal dialog, no events are sent through the application event loop. Caspar Heiden, vd wrote: In AppEventLoop, after you've gotten an event with EvtGetEvent, but before you call SysHandleEvent: - check wether the event is a

RE: blocking the carriage return when the keyboard is displayed.

2004-04-02 Thread Caspar Heiden, vd
In AppEventLoop, after you've gotten an event with EvtGetEvent, but before you call SysHandleEvent: - check wether the event is a keyDownEvent - if it is, check wether the key is the CR return (check docs / google) If both tests are true, simply skip the rest of the loop, for instance by using

blocking the carriage return when the keyboard is displayed.

2004-04-01 Thread Eric Potter
Is it possible to block the carriage return character when the keyboard is displayed? I was looking at Keyboard.h and there are a bunch of functions that aren't documented, so I don't know what they do. I see there is a #define for the return key, but I don't know if or how I would use this

Re: blocking the carriage return when the keyboard is displayed.

2004-04-01 Thread Dave Lippincott
I found it easier to strip unwanted characters from the text returned by the on-screen keyboard. - Original Message - From: Eric Potter [EMAIL PROTECTED] Newsgroups: palm-dev-forum To: Palm Developer Forum [EMAIL PROTECTED] Sent: Thursday, April 01, 2004 2:34 PM Subject: blocking the

Re: blocking the carriage return when the keyboard is displayed.

2004-04-01 Thread Matt Graham
Eric Potter wrote: Is it possible to block the carriage return character when the keyboard is displayed? I was looking at Keyboard.h and there are a bunch of functions that aren't documented, so I don't know what they do. I see there is a #define for the return key, but I don't know if or how I

Re: blocking the carriage return when the keyboard is displayed.

2004-04-01 Thread Eric Potter
Matt Graham wrote: Eric Potter wrote: Is it possible to block the carriage return character when the keyboard is displayed? I was looking at Keyboard.h and there are a bunch of functions that aren't documented, so I don't know what they do. I see there is a #define for the return key, but I