小弟初学VB,请教各位这段代码是什么意思
Private Sub Text_1 KeyPress(Index As Integer, KeyAscii As Integer)
i = Index+1
If i >=6 Then i = 0
If KeyAscii = 13 Then
Text1(i).SetFocus
End If
End Sub