VB中,设计一个计时器,能够设置倒计时的时间,并进行倒计时

发布于2022-05-28 09:13:09
1个回答
admin
网友回答2022-05-28
给你举个例子 添加一个Timer控件,一个Label控件和一个Text控件 private sub form1_load() Timer1.Interval=1000 '这里是时间间隔 text1.text="" Label1.caption="请在文本中输入倒计时的时间(单位为s)" end sub private sub Timer1_Timer() 'Timer事件 dim i as integer i=text1.text Label1.Caption=i i=i-1 if i<=0 then '判断 msgbox "时间到" else i=text1.text Label1.Caption=i ’显示在Lable控件中 i=i-1 end if end sub

回到
顶部