[單項選擇題] 設窗體上有一個標簽Label1和一個計時器Timer1,Timer1的Interval屬性被沒置為1000,Enabled屬性被設置為True。
2021-07-20
[單項選擇題] 設窗體上有一個標簽Label1和一個計時器Timer1,Timer1的Interval屬性被沒置為1000,Enabled屬性被設置為True。要求程序運行時每秒在標簽中顯示一次系統(tǒng)當前時間。以下可以實現(xiàn)上述要求的事件過程是( )
A.Private Sub Timer1_Timer()
Label1.Caption=True
End Sub
B.Private Sub Timer1_Timer()
Label1.Caption=Time$
End Sub
C.Private Sub Timer1_Timer()
Label1.Interval=1
End Sub
D.Private Sub Timer1_Timer()
For k=1 To Timer1.Interval
Label1.Caption=Timer
Next k
End Sub
正確答案:B
參考解析:計時器支持Timer事件,對于一個有計時器的窗體,每經過一段由Interval指定的時間間隔,就產生一個Timer事件。本題是要求每隔一秒在標簽Labetl1中顯示系統(tǒng)當前時間,而標簽中的文本只能用Caption屬性顯示。
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。