单选题
设窗体上有2个文本框Text1和Text2,并有下面的事件过程:
Dim n
Private Sub Text1_KeyPress(KeyAscii As Integer)
If "A"<=Chr(KeyAscii)And Chr(KeyAscii)<="Z" Then
n=n+1
End If
If KeyAscii=13 Then
Text2.Text=n
End If
End Sub
程序运行时,在文本框Text1中输入“Visual Basic 6.0”并按Enter键后,在文本框Text2中显示的是______。