Re: Problem with uppercasing input

2005-06-27 Thread Ben Combee
At 07:13 AM 6/27/2005, you wrote: Hi, I have a field whose contents need to be all capital letters. A long time ago, I wrote this code to do it: case keyDownEvent: if (FrmGetFocus(frm) == FrmGetObjectIndex(frm, capsfield)) event->data.keyDown.chr = upper_char(event->data.keyDown.chr)

Re: Problem with uppercasing input

2005-06-27 Thread Robert Moynihan
Dr. Vesselin Bontchev wrote: In Palm OS 5.x, direct manipulation of the event queue no longer seems to work - as those who keep recommending exiting an application by stuffing an AppStop event directly into the event queue will discover to their chagrin. Manipulating the OS5 event queue see

Re: Problem with uppercasing input

2005-06-27 Thread Robert Moynihan
Thomas Ward wrote: Hi, I have a field whose contents need to be all capital letters. A long time ago, I wrote this code to do it: case keyDownEvent: if (FrmGetFocus(frm) == FrmGetObjectIndex(frm, capsfield)) event->data.keyDown.chr = upper_char(event->data.keyDown.chr); break; I the

Re: Problem with uppercasing input

2005-06-27 Thread Miro Pomsar
rds, Miro Pomsar - Original Message - From: "Thomas Ward" <[EMAIL PROTECTED]> To: "Palm Developer Forum" Sent: Monday, June 27, 2005 14:13 Subject: Problem with uppercasing input > Hi, > > I have a field whose contents need to be all capital letters

Problem with uppercasing input

2005-06-27 Thread Dr. Vesselin Bontchev
In Palm OS 5.x, direct manipulation of the event queue no longer seems to work - as those who keep recommending exiting an application by stuffing an AppStop event directly into the event queue will discover to their chagrin. As to how exactly to achieve what you want - I don't know; I've never

Problem with uppercasing input

2005-06-27 Thread Thomas Ward
Hi, I have a field whose contents need to be all capital letters. A long time ago, I wrote this code to do it: case keyDownEvent: if (FrmGetFocus(frm) == FrmGetObjectIndex(frm, capsfield)) event->data.keyDown.chr = upper_char(event->data.keyDown.chr); break; I then return false from