我有这种情况,表单将显示以下消息:“确定”,当复选框勾选以下条件时,关闭选项:如果日期与系统日期相同,则为下午4:00。ET或之后
“日期应改为下一个营业日。”
我试过:
if chk1.vbchecked = true then txtdate.date = now + 1发布于 2013-08-22 14:28:37
尝试Value属性:
if chk1.Value = 1 then txtdate.date = now + 1https://stackoverflow.com/questions/18383088
复制相似问题