How could I allow users to move through fields (e.g. text boxes) using cursor keys (Left, Down, Up, Right)?
Thanks in advance.
Printable View
How could I allow users to move through fields (e.g. text boxes) using cursor keys (Left, Down, Up, Right)?
Thanks in advance.
check the keypress event for
vbKeyLeft (left arrow)
.
.
.
You can find all the key combinations under Key Code constants in the VB6 Documentation. They must be on the net someplace also.
Good Luck
DerFarm