以文本方式查看主题 - Foxtable(狐表) (http://www.foxtable.com/bbs/index.asp) -- 专家坐堂 (http://www.foxtable.com/bbs/list.asp?boardid=2) ---- [求助]请问怎么实现格式变化? (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=153219) |
-- 作者:爱秦宣言 -- 发布时间:2020/8/4 11:43:00 -- [求助]请问怎么实现格式变化? |
-- 作者:有点蓝 -- 发布时间:2020/8/4 11:46:00 -- datacolchanged事件 If e.DataRow.IsNull("入库日期") Then e.DataRow("出库日期") = Nothing Else e.DataRow("出库日期") = format(e.DataRow("入库日期"),"yyyy年MM月") End If End If |
-- 作者:爱秦宣言 -- 发布时间:2020/8/4 12:14:00 -- 谢谢老师 |