anyone got code that will wrk through the tab index as the user clicks enter?!
Printable View
anyone got code that will wrk through the tab index as the user clicks enter?!
The code is like that, I am not sure exactly what it looks like, but thats the gist of it
VB Code:
Private Sub cboDestination_KeyPress(KeyAscii As MSForms.ReturnInteger) If KeyAscii = 13 Then KeyAscii = 0 SendKeys "{tab}" End If End Sub
Quote:
Originally Posted by kfcSmitty
Thanks!!!!!
But, isnt there a quciker way of doin this cos this way i need to write a sub for control?!
Each keypress event needs to have that code.