以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 日期 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=13748) |
-- 作者:tungwun -- 发布时间:2011/10/25 22:24:00 -- 日期 起始日期列 25-10-2011 到期日列自动输入12个月-1天 到期日 24-10-2012如何做到? |
-- 作者:czy -- 发布时间:2011/10/25 22:33:00 -- DataColChanged事件代码: If e.DataCol.Name = "起始日期" Then If e.DataRow.IsNull("起始日期") Then e.DataRow("到期日期") = Nothing Else e.DataRow("到期日期") = e.DataRow("起始日期").AddMonths(12).AddDays(-1) End If End If
|