问题详情

在窗体上画两个滚动条,名称分别为Hscroll1、Hscroll2;六个标签,名称分别为Label1、Label2、Label3、Label4、Label5、Label6,其中标签Label4~Label6分别显示“A”、“B”、“A*B”等文字信息,标签Label1、Label2分别显示其右侧的滚动条的数值,Label3显示A*B的计算结果。当移动滚动框时,在相应的标签中显示滚动条的值。当单击命令按钮“计算”时,对标签Label1、Label2中显示的两个值求积,并将结果显示在Label3中。以下不能实现上述功能的事件过程是______。


A、Private Sub Command1_Click() Label3. Caption=Str(Val(Label1.Caption)*Val(Label2.Caption)) End Sub

B、Private Sub Command1_Click() Label3.Caption=HScroll1.Value*HScroll2.Value End Sub

C、Private Sub Command1_Click() Label3.Caption=HScroll1*HScroll2 End Sub

D、Private Sub Command1_Click() Label3.Caption=HScroll1.Text*HScroll2.Text End Sub

时间:2022-03-03 21:11 关键词:

答案解析

D
解析:HScroll控件缺省属性为Value,即HScroll1与HScroll1.Value相等,而其属性中没有Text属性。