Quote Originally Posted by Spoo View Post
VBLearner6

Well, one possibility is to use the KeyDown event.

You can create a "stub" in design mode by double clicking
your FG and then selecting KeyDown from the upper right
drop down list. It would look something like this.

Code:
Private Sub MSHFlexgrid1_KeyDown(KeyCode As Integer, Shift as Integer)

End Sub
KeyCode for
dn arrow key is 40,
up arrow key is 38,
lf arrow key is 37,
rt arrow key is 39.

Does that get you started?

Spoo

Thanks a lot to both of you (Mr. si_the_geek & Mr. Spoo) for your kind help.