>I have a form with a large number of (input) text boxes. The input data is
>all
[quoted text clipped - 21 lines]
>
> Chuck
Michel,
Thank you for your help.
>>I have a form with a large number of (input) text boxes. The input data is
>>all
[quoted text clipped - 26 lines]
>Private Sub frmForm_KeyDown(ByVal sender As Object, ByVal e As
>System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
Error "End of statement expected" at "Handles"
*Handles Me.KeyDown* placed on separate line was accepted, but probably not
correct. Could not run because of error in Select Case
> Select Case e.KeyCode
> Case Keys.Enter
> Me.SelectNextControl(CType(Me.ActiveControl, TextBox), True, True,
>True, False)
"=" expected at end of statement??
> End Select
>
> End Sub
>
> Private Sub frmForm_KeyPress(ByVal sender As Object, ByVal e As
>System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
Again *Handles Me.KeyPress* had to be placed on separate line.
> '==================
> 'prevents beep on ENTER
[quoted text clipped - 10 lines]
>
>Michel