以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]在表事件DataColChanged 中e.NewValue的字段类型应该是什么 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=135475) |
-- 作者:sjx71 -- 发布时间:2019/5/27 17:18:00 -- [求助]在表事件DataColChanged 中e.NewValue的字段类型应该是什么 在表事件DataColChanged 中e.NewValue的字段类型应该是什么 假如变化的字段类型为日期时间型,我要判断日期中的年份是否发生了变化,怎么写程序 我写了 If e.Newvalue.year <> e.OldValue.year then 有时能够执行,有时显示string字段没有year属性,怎么回事 我写了 If e.Newvalue.Substring(0,4) <> e.OldValue.Substring(0,4) then 有时候也能运行,有时候显示 未找到类型“Date”的公共成员“Substring” e.NewValue 字段类型 到底应该是什么? 谢谢老师 |
-- 作者:有点甜 -- 发布时间:2019/5/27 17:34:00 --
If cdate(e.Newvalue).year <> cdate(e.OldValue).year then
|