col vb6 per spostarmi con il tasto invio c'era quanto descritto ma adesso?
codice:Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then KeyAscii = 0 SendKeys "{TAB}" End If
col vb6 per spostarmi con il tasto invio c'era quanto descritto ma adesso?
codice:Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then KeyAscii = 0 SendKeys "{TAB}" End If
RISOLTO
codice:If e.KeyChar = Microsoft.VisualBasic.ChrW(13) Then e.Handled = True SendKeys.Send("{tab}") End If