can any one help me key press event in excel, when i preass enter key
i curser need to move one cotrol to another control,
for example if i press enter key in text box curser move to another
text box or another control,below i have return code like this in text
box keypress event
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger,
ByVal Shift As Integer)
If keyascii = 13 Then
Me.ComboBox1.SetFocus
End If
End Sub
but curser not move from textbox1 to combox1.
pls help me