在窗体上添加一个文本框,其名称为text1,然后编写如下的Load事件过程,则该程序的运行结果是______。Private Sub form_ load Text1. Text = " " t = 1 for k = 10 To 6 Step -2 t= t* k Next k Text1. Text = tEnd Sub
A: 在文本框中显示120
B: 文本框中仍为空
C: 在文本框中显示480
D: 出错
A: 在文本框中显示120
B: 文本框中仍为空
C: 在文本框中显示480
D: 出错
举一反三
- 在窗体上添加一个文本框,名称为text1,然后编写如下的load事件过程,则程序的运行结果是__________。 Private Sub Form_Load Text1.Text="" Text1.SetFocus For k=1 to 5 t=t*k Next k Text1.Text=t End Sub
- 在窗体上添加一个文本框,名为Text1,然后编写如下的Load事件过程,则程序的运行结果是() A: 在文本框中显示120 B: 文本框中仍为空 C: 在文本框中显示480 D: 出错
- 窗体上有1个名称为Text1的文本框,1个名称为Label1的标签。程序运行后,如果在文本框中输入信息,则立即在标签中显示相同的内容。以下可以实现上述操作的事件过程为( )。 A: A) Private Sub Label1_Click() B: Label1. Caption = Text1. Text C: End Sub D: B) Private Sub Label1_Change() E: Label1. Caption = Text1. Text F: End Sub G: C) Private Sub Text1_Click() H: Label1. Caption = Text1. Text I: End Sub J: D) Private Sub Text1_Change() K: Label1. Caption = Text1. Text L: End Sub
- 【单选题】在文本框Text1中输入数字12,Text2中输入数字34,执行以下语句,只有_____可使文本框Text3中显示46; A. Text3. Text=Val(Text1. Text)+Val(Text2.Text) B. Text3. Text=Text1. Text+Text2.Text C. Text3. Text=Text1. Text & Text2. Text D. Text3. Text=Val(Text1. Text) & Val(Text2.Text)
- 窗体上有1个名称为Text1、内容为空的文本框。编写如下事件过程: Private Sub Text1_KeyUp(KeyCode As Integer, Shift As Integer) Print Text1. Text; End Sub 运行程序,并在文本框中输入“123”,则在窗体上的输出结果为( )。 A: A) 123 B: B) 112 C: C) 12123 D) 112123