Re: Automatically write in uppercase

2004-03-03 Thread R. Joseph Newton
Taylor James wrote: > > Incidentally MS Word does this. If you try to type a sentence, say: > > pLEASE DON'T TURN OFF MY CAPS LOCK KEY, i WANT IT LIKE THIS. > > with the caps lock key on, it automatically turns off the caps lock key and > converts it to: > > Please don't...etc. > > It's really ann

RE: Automatically write in uppercase

2004-03-03 Thread Taylor James
James Edward Gray II wrote: > On Feb 29, 2004, at 6:30 AM, John wrote: > > > That's a nice method but i would prefer to activate the CAPS-LOCK > > and user write in capitals in my text entry widget > > I would prefer you didn't. ;) > > The keyboard takes commands from me, not the computer. If

Re: Automatically write in uppercase

2004-03-02 Thread zsdc
Paul Johnson wrote: James Edward Gray II said: On Feb 29, 2004, at 6:30 AM, John wrote: That's a nice method but i would prefer to activate the CAPS-LOCK and user write in capitals in my text entry widget I would prefer you didn't. ;) The keyboard takes commands from me, not the computer. If

Re: Automatically write in uppercase

2004-03-02 Thread Paul Johnson
James Edward Gray II said: > On Feb 29, 2004, at 6:30 AM, John wrote: > >> That's a nice method but i would prefer to activate the CAPS-LOCK and >> user >> write in capitals in my text entry widget > > I would prefer you didn't. ;) > > The keyboard takes commands from me, not the computer. If a

Re: Automatically write in uppercase

2004-02-29 Thread zsdc
James Edward Gray II wrote: On Feb 29, 2004, at 6:30 AM, John wrote: That's a nice method but i would prefer to activate the CAPS-LOCK and user write in capitals in my text entry widget I would prefer you didn't. ;) The keyboard takes commands from me, not the computer. If a program started m

Re: Automatically write in uppercase

2004-02-29 Thread James Edward Gray II
On Feb 29, 2004, at 6:30 AM, John wrote: That's a nice method but i would prefer to activate the CAPS-LOCK and user write in capitals in my text entry widget I would prefer you didn't. ;) The keyboard takes commands from me, not the computer. If a program started monkeying with my control of

Re: Automatically write in uppercase

2004-02-29 Thread WilliamGunther
In a message dated 2/29/2004 7:31:49 AM Eastern Standard Time, [EMAIL PROTECTED] writes: >That's a nice method but i would prefer to activate the CAPS-LOCK and user >write in capitals in my text entry widget I can't think of how (or why) you'd want to do that. If you want them to type in caps,

Re: Automatically write in uppercase

2004-02-29 Thread John
ROTECTED]> Sent: Sunday, February 29, 2004 1:21 PM Subject: Re: Automatically write in uppercase > R. Joseph Newton wrote: > > > John wrote: > > > >>How can activate the caps lock while the user write in a perl programt (Perl/Tk) > > > > Why would you want to d

Re: Automatically write in uppercase

2004-02-29 Thread zsdc
R. Joseph Newton wrote: John wrote: How can activate the caps lock while the user write in a perl programt (Perl/Tk) Why would you want to do that?!? John, if you want to do that because you need to have your input all in caps, then use uc: $text = uc $text; You will need to add: use loca

Re: Automatically write in uppercase

2004-02-28 Thread R. Joseph Newton
John wrote: > How can activate the caps lock while the user write in a perl programt (Perl/Tk) Why would you want to do that?!? Joseph -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Automatically write in uppercase

2004-02-28 Thread John
How can activate the caps lock while the user write in a perl programt (Perl/Tk)