窗体上有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
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
举一反三
- 窗体上有1个名称为Text1的文本框,1个名称为Label1的标签。程序运行后,如果在文本框中输入信息,则立即在标签中显示相同的内容。以下可以实现上述操作的事件过程为______。 A: Private Sub Label1_Click()Label1. Caption=Text1. TextEnd Sub B: Pfivae Sub Label1_Change()Label1. Caption=Text1. TextEnd Sub C: Private Sub Text1_Click()Label1. Caption=Text1. TextEnd Sub D: Pfivae Sub Text1_Change()Label1. Caption=Text1. TextEnd Sub
- 在窗体上添加一个文本框,其名称为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: 出错
- 在窗体上画一个文本框(名称为Text1)和一个标签(名称为Label1),程序运行后如果在文本框中输入文本,则标签中立即显示相同的内容。以下可以实现上述操作的事件过程是( )。 A: Private Sub Text1 Change() B: Label1.Caption=Text1.Text C: End Sub D: Private Sub Label1 Change() E: Label1.Caption=Text1.Text F: End Sub G: Private Sub Text1 Click() H: Label1.Capnon=Text1.text I: End Sub J: Private Sub Label1 Click() K: Label1.Caption=Text1.Text L: End sot
- 设窗体上有一个标签Label1和一个计时器Timer1,Timer1的Interval属性被设置为1000, Enabled属性被设置为True。要求程序运行时每秒在标签中显示一次系统当前时间。以下可以实现上述要求的事件过程是______。 A: Private Sub Timer1_Timer()Label1. Caption=TrueEnd Sub B: Private Sub Timer1_Timer()Label1. Caption=Time $End Sub C: Privme Sub Timer1_Timer()Label1. Interval=1End Sub D: Private Sub Timer1_Timer()For k=1 ro Timer1. IntervalLabel1. Caption=TimerNext kEnd Sub
- 窗体上有1个名称为Text1的文本框,1个名称为Label1的标签。程序运行后,如果在文本框中输入信息,则立即在标签中显示相同的内容。以下可以实现上述操作的事件过程为( )。 A: Private Sub Label1_Click() Label1.Caption=Text1.Text End Sub B: Private Sub Label1_Change() Label1.Caption=Text1.Text End Sub C: Private Sub Text1_Click() Label1.Caption=Text1.Text End Sub D: Private Sub Text1_Change() Label1.Caption=Text1.Text End Sub