【单选题】在窗体上添加一个命令按钮Command1和两个文本框Text1和Text2,然后编写如下事件过程:Private Sub Command1_Click() n = Text1.Text Select Case n Case 1 To 20 x = 10 Case 2, 4, 6 x = 20 Case Is < 10 x=30 Case 10 x=40 End Se...
【简答题】在窗体中添加一个命令按钮,名称为Command1,两个文本框名称分别为Text1、Text2,然后编写如下程序: Private Sub Command1_Click() A =Text1.Text B =Text2.Text C =LCase(a) D =UCase(b) Print C& D End Sub 程序运行后,在文本框Text1、Text2中分别输入AbC和Efg,然后单击Comma...
【单选题】在窗体上添加一个命令按钮Command1和两个文本框Text1和Text2,然后编写如下事件过程: Private Sub Command1_Click() n = Text1.Text Select Case n Case 1 To 20 x = 10 Case 2, 4, 6 x = 20 Case Is < 10 x=30 Case 10 x=40 End Select Text2....
【简答题】在窗体上添加一个文本框、一个标签和一个命令按钮,其名称分别为Text1、Label1和Command1,然后编写如下两个事件过程: Private Sub Command1_Click() s$ = InputBox("请输入一个字符串") Text1.Text = s$ End Sub Private Sub Text1_Change() Label1.Caption = UCase(Mid(T...
【简答题】在窗体上添加一个文本框,然后编写如下两个事件过程: Pribate Sub Form1_Click() Text1.Text="VB 程 序设计" End Sub Pribate Sub Text1_Change() Form1.Print "VBProgamming" End Sub 程序运行后,单击窗体,文本框中显示的内容是_[1]_,窗体上显示的内容是_[2]_。