【单选题】在窗体上面有一个文本框,其名称为Text1,编写如下事件过程: Private Sub Text1_KeyPress(KeyAscii As Integer) Dims str As String str=Chr(KeyAscii) KeyAseii=Asc(UCase(str)) Text1.Text=String(2,KeyAscii) End Sub 程序运行后,如果在键盘上输入字母“a”,...
【单选题】窗体上有文本框Text1、Text2和命令按钮Command1,编写如下事件过程: Private Sub Command1_Click() If val(Text1.Text)>3 then Text2.Text= “h” Else Text2.Text= “i” End If End Sub 当用户在文本框Text1中输入6,并单击Command1,则文本框Text2中显示()。