--
Select Case e.DataCol.Name
Case "身份证号"
If e.DataRow.IsNull("身份证号") Then \'身份证号码是否为空
e.DataRow("出生日期") = Nothing \'如果为空,则清除出生日期
e.DataRow("性别") = Nothing \'如果为空,则清除出生日期
e.DataRow("年龄") = Nothing \'如果为空,则清除年龄
Else \'否则从身份证号码列中提取出生日期
If ValidPIN(e.newvalue) Then
e.DataRow("出生日期") =Format( ReadBirthday(e.DataRow("身份证号")),"yyyy年MM月dd日")
e.DataRow("性别") = ReadSex(e.DataRow("身份证号"))
Dim d As Date = ReadBirthday(e.DataRow("身份证号"))
Dim y As Integer = d.year
If format(d, "MMdd") <= Format(Date.Today, "MMdd") Then
e.DataRow("年龄") = Date.Today.Year - y
Else
e.DataRow("年龄") = Date.Today.Year - y -1
End If
End If
End If
End Select
是这样修改代码吗?运行后同样效果
未修改之前,增加数据时如果身份证号码字段是空值的时候是正常的,不应该是datacolchanged事件代码的事吧?
把AfterOpenProject事件中写代码注释掉就没事了,但不更新年龄了,怎么处理一下呢?
DataTables("客户资料").DataCols("身份证号").RaiseDataColChanged() \'重新计算年龄
DataTables("客户资料").Save \'保存数据 这段代码为什么不保存数据呢?
[此贴子已经被作者于2019/9/15 17:07:03编辑过]