帮忙设计一个最简单的VB程序(查询当前时间和日期的)要代码
4个回答
展开全部
哪有那么麻烦啊?这样就可以了!我先在电脑上运行了的。
两个command,(分别是显示和清除)一个label来显示时间,一个timer.
属性设置:
label1清除内容,钟表的interva设为1000,表示1秒,enadled设为false表示为不可用。
Private Sub Command1_Click()
Timer1.Enabled = True
Label1.Caption = Date + Time
End Sub
Private Sub Command2_Click()
Timer1.Enabled = False
Label1.Caption = ""
End Sub
Private Sub Timer1_Timer()
Label1.Caption = Date + Time
End Sub
共三个命令。
两个command,(分别是显示和清除)一个label来显示时间,一个timer.
属性设置:
label1清除内容,钟表的interva设为1000,表示1秒,enadled设为false表示为不可用。
Private Sub Command1_Click()
Timer1.Enabled = True
Label1.Caption = Date + Time
End Sub
Private Sub Command2_Click()
Timer1.Enabled = False
Label1.Caption = ""
End Sub
Private Sub Timer1_Timer()
Label1.Caption = Date + Time
End Sub
共三个命令。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub Command1_Click()
label1.caption=date '显示日期
label1.caption=time'显示时间
End Sub
label1.caption=date '显示日期
label1.caption=time'显示时间
End Sub
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-11-01
展开全部
简单显示:
Private Sub Command1_Click()
Label1.Caption = Now
End Sub
复杂点:
Private Sub Command1_Click()
Label1.Caption = "当前日期为:" & Year(Date) & "年" & Month(Date) & "月" & Day(Date) & "日" & vbCrLf & "当前时间为:" & Time
End Sub
Private Sub Command1_Click()
Label1.Caption = Now
End Sub
复杂点:
Private Sub Command1_Click()
Label1.Caption = "当前日期为:" & Year(Date) & "年" & Month(Date) & "月" & Day(Date) & "日" & vbCrLf & "当前时间为:" & Time
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub Command1_Click()
Label1.Caption = "当前日期为:" & Date
Label1.Caption = Label1.Caption & vbCrLf & "当前时间为:" & Time
End Sub
Label1.Caption = "当前日期为:" & Date
Label1.Caption = Label1.Caption & vbCrLf & "当前时间为:" & Time
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询