关于VB系统日期和时间
下面的程序怎样防止用户因在InputBox中乱输入而报错PrivateSubCommand1_Click()DimstrTmpAsStringstrTmp=InputBo...
下面的程序怎样防止用户因在InputBox中乱输入而报错
Private Sub Command1_Click()
Dim strTmp As String
strTmp = InputBox("请输入新的系统日期:(yyyy-mm-dd)", "修改系统日期")
If strTmp <> "" Then
Date = CDate(strTmp)
MsgBox "新的系统日期为" + Str(Date)
End If
End SubPrivate Sub Command2_Click()
Dim strTmp As String
strTmp = InputBox("请输入新的系统日期:(hh-mm-ss)", "修改系统时间")
If strTmp <> "" Then
Time = CDate(strTmp)
MsgBox "新的系统时间为" + Str(Time)
End If
End Sub 展开
Private Sub Command1_Click()
Dim strTmp As String
strTmp = InputBox("请输入新的系统日期:(yyyy-mm-dd)", "修改系统日期")
If strTmp <> "" Then
Date = CDate(strTmp)
MsgBox "新的系统日期为" + Str(Date)
End If
End SubPrivate Sub Command2_Click()
Dim strTmp As String
strTmp = InputBox("请输入新的系统日期:(hh-mm-ss)", "修改系统时间")
If strTmp <> "" Then
Time = CDate(strTmp)
MsgBox "新的系统时间为" + Str(Time)
End If
End Sub 展开
3个回答
推荐于2021-02-10
展开全部
Private Sub Command1_Click()
Dim strTmp As String
strTmp = InputBox("请输入新的系统日期:(yyyy-mm-dd)", "修改系统日期")
If strTmp <> "" And IsDate(strTmp) <> False Then
Date = CDate(strTmp)
MsgBox "新的系统日期为" + Str(Date)
End If
End Sub
Private Sub Command2_Click()
Dim strTmp As String
strTmp = InputBox("请输入新的系统日期:(hh-mm-ss)", "修改系统时间")
If strTmp <> "" And IsDate(strTmp) <> False Then
Time = CDate(strTmp)
MsgBox "新的系统时间为" + Str(Time)
End If
End Sub
Dim strTmp As String
strTmp = InputBox("请输入新的系统日期:(yyyy-mm-dd)", "修改系统日期")
If strTmp <> "" And IsDate(strTmp) <> False Then
Date = CDate(strTmp)
MsgBox "新的系统日期为" + Str(Date)
End If
End Sub
Private Sub Command2_Click()
Dim strTmp As String
strTmp = InputBox("请输入新的系统日期:(hh-mm-ss)", "修改系统时间")
If strTmp <> "" And IsDate(strTmp) <> False Then
Time = CDate(strTmp)
MsgBox "新的系统时间为" + Str(Time)
End If
End Sub
ZESTRON
2024-09-04 广告
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸...
点击进入详情页
本回答由ZESTRON提供
2013-12-22
展开全部
输入框的Validate事件中检查是否合法,不合法提示错误,Cancel=true
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-12-22
展开全部
可用 isdate(strTmp) 来判断是否日期格式
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询