[單項選擇題] 在窗體上畫兩個滾動條,名稱分別為Hscroll1、Hscroll2;六個標簽,名稱分別為Label1、Label2、Label3、Label4、
[單項選擇題] 在窗體上畫兩個滾動條,名稱分別為Hscroll1、Hscroll2;六個標簽,名稱分別為Label1、Label2、Label3、Label4、Label5、Label6,其中標簽Label4~Label6分別顯示“A”、“B”、“A*B”等文字信息,標簽Label1、Label2分別顯示其右側(cè)的滾動條的數(shù)值,Label3顯示A*B的計算結(jié)果。當移動滾動框時,在相應(yīng)的標簽中顯示滾動條的值。當單擊命令按鈕“計算”時,對標簽Label1、Label2中顯示的兩個值求積,并將結(jié)果顯示在Label3中。以下不能實現(xiàn)上述功能的事件過程是______。
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
正確答案:D
參考解析:[評析] HScroll控件缺省屬性為Value,即HScroll1與HScroll1.Value相等,而其屬性中沒有Text屬性。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。