VB5中的消息框

时间:2013-08-22 14:19:22

标签: vb5

我有这个场景,表格将显示以下消息“OK”,当选中一个复选框时勾选以下标准:     如果日期与系统日期相同 和时间下午4点ET或之后

“日期应更改为下一个工作日。”

我试过了:

if chk1.vbchecked = true then txtdate.date = now + 1

1 个答案:

答案 0 :(得分:2)

尝试使用Value属性:

if chk1.Value = 1 then txtdate.date = now + 1