Return another value when typing another

  • Thread starter Thread starter Gary D. Rezek
  • Start date Start date
G

Gary D. Rezek

Hi All,
I want to be able to return a Capital X when the 4 key on the number pad is pressed.
What do I need to use? I've gotten confused with KeyDown, KeyUp, KeyPress, Key Code and KeyAscii.
Thank you.
 
I don't know what is it that you are trying to do, but
maybe this can help;
if this is a textbox that you are inputing 4 into you can
have some code written on After Update like
If txtbox.value = 4 then
me!txtbox.value = "X"
end if
You can get more fancy and validate if it's 4 then do
this if it's null then do this....
Not really sure what are you trying to do..Post back so
maybe there will be better solution once we know what are
you doing...
 
Back
Top