使用vb设计倒计时的程序代码
*界面要求:*使用标签,文本框,命令按钮、时钟控件完成。*运行要求:*用户点击“开始”按钮,从文本框中读取初始秒数显示到上面的标签中,每隔一秒将标签中,显示的秒数减1,当...
* 界面要求:
* 使用标签,文本框,命令按钮、时钟控件完成。
* 运行要求:
* 用户点击“开始”按钮,从文本框中读取初始秒数显示到上面的标签中,每隔一秒将标签中,显示的秒数减1,当减到0时,将时钟控件的Enbabled属性置为False,并使用MsgBox显示“时间到 展开
* 使用标签,文本框,命令按钮、时钟控件完成。
* 运行要求:
* 用户点击“开始”按钮,从文本框中读取初始秒数显示到上面的标签中,每隔一秒将标签中,显示的秒数减1,当减到0时,将时钟控件的Enbabled属性置为False,并使用MsgBox显示“时间到 展开
2个回答
展开全部
Private Sub Command1_Click()
Label1.Caption = Text1.Text
Timer1.Enabled = True
End Sub
Private Sub Form_Load()
Timer1.Interval = 1000
End Sub
Private Sub text1_KeyPress(KeyAscii As Integer) 'text内只能输入数字
Select Case KeyAscii
Case 48 To 57 '0-9
Exit Sub
Case Else
KeyAscii = 0
End Select
End Sub
Private Sub Timer1_Timer()
Label1.Caption = Str(Val(Label1.Caption) - 1)
If Val(Label1.Caption) = 0 Then
MsgBox "时间到"
Timer1.Enabled = False
End If
End Sub
Label1.Caption = Text1.Text
Timer1.Enabled = True
End Sub
Private Sub Form_Load()
Timer1.Interval = 1000
End Sub
Private Sub text1_KeyPress(KeyAscii As Integer) 'text内只能输入数字
Select Case KeyAscii
Case 48 To 57 '0-9
Exit Sub
Case Else
KeyAscii = 0
End Select
End Sub
Private Sub Timer1_Timer()
Label1.Caption = Str(Val(Label1.Caption) - 1)
If Val(Label1.Caption) = 0 Then
MsgBox "时间到"
Timer1.Enabled = False
End If
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
展开全部
Dim i As Integer
Private Sub Command1_Click()
Timer1.Enabled = True
Timer1.Interval = 1000
Label1.AutoSize = True
i = Val(Text1.Text)
End Sub
Private Sub Timer1_Timer()
Label1.Caption = i
If i = 0 Then
MsgBox "时间到"
Timer1.Enabled = False
End If
i = i - 1
End Sub
Private Sub Command1_Click()
Timer1.Enabled = True
Timer1.Interval = 1000
Label1.AutoSize = True
i = Val(Text1.Text)
End Sub
Private Sub Timer1_Timer()
Label1.Caption = i
If i = 0 Then
MsgBox "时间到"
Timer1.Enabled = False
End If
i = i - 1
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询