设窗体上有2个文本框Text1和Text2,并有下面的事件过程:Dim nPrivate 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 IfEnd Sub程序运行时,在文本框Text1中输入“Visual Basic 6.0”并按回车键后,在文本框Text2中显示的是( )。