以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- BUG收集 (http://foxtable.com/bbs/list.asp?boardid=12) ---- 帮助文件中RaiseDataColChanged中错误 (http://foxtable.com/bbs/dispbbs.asp?boardid=12&id=2238) |
-- 作者:yangming -- 发布时间:2009/3/30 16:57:00 -- 帮助文件中RaiseDataColChanged中错误 帮助中:"例如年龄列由出生日期计算得出,我们将DataColChanged事件设为: If DataCol.Name = "出生日期" ThenIf e.DataRow.IsNull("出生日期") Then \'如果没有输入出生日期 e.DataRow("年龄") = Nothing \'则清空年龄 Else \'否则计算年龄 e.DataRow("年龄") = Date.Today.Year - e.DataRow("出生日期").Year End If End If " 错误: If DataCol.Name = "出生日期" Then 正确: If e.DataCol.Name = "出生日期" Then |
-- 作者:狐狸爸爸 -- 发布时间:2009/3/30 19:17:00 -- 呵呵,收到 |