KoenPiller
Programmer
Hi,
I would like to change the KeyPress value, e.g. when you press the "8" it will result as if you would have pressed the "*".
Can't use the syntax:
since this will move the cursor to the start of the textbox, which is unwanted.
Any suggestion how to solve this, without messing the endusers Keyboardlayout?
Thanks.
Koen
I would like to change the KeyPress value, e.g. when you press the "8" it will result as if you would have pressed the "*".
Can't use the syntax:
Code:
ThisForm.myField.Value = STRTRAN(ThisForm.myField.Value, "8","*")
Any suggestion how to solve this, without messing the endusers Keyboardlayout?
Thanks.
Koen