Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Changing KeyPress value
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00046080
Message ID:
00046126
Views:
28
>In a text object's KeyPress event, how do I change the value of the keycode before it gets placed in the objects value?
>
>Thanks in advance,
>Mike


We also used the following in the keypress event for upper and lower transition:


DO CASE
CASE nShiftAltCtrl = 0 ;
and nKeyCode > 64 ;
and nKeyCode < 91
* Allow upper case letters
CASE nShiftAltCtrl = 0 ;
and nKeyCode > 96 ;
and nKeyCode < 128
* Force letters to uppercase
* and pipe them back to the
* above case
NODEFAULT
KEYBOARD upper(chr(lastkey()))
ENDCASE
Bret Hobbs

"We'd have been called juvenile delinquents only our neighborhood couldn't afford a sociologist." Bob Hope
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform