When the code below is executed if sometimes it performs a "TAB" sometimes does nothing and sometimes gets my PC hung so I have to do CTR-ALT-DEL & Cancel which moves the execution of the program to the next line ("End IF"). Any idea what is missing to make it work? No special settings for mtComboBx
Private Sub myComboBx_KeyPress(ByVal sender As Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs) Handles batch_typeComboBx.KeyPress
If e.KeyChar = Chr(13) Then
System.Windows.Forms.SendKeys.Send(Chr(9))
End If
End Sub