--
If e.DataCol.name = "事项" Then
If e.DataRow.isnull("事项")
e.DataRow("事项结果") = nothing
else
e.DataRow("事项结果") = e.DataRow("事项") & "_完成"
systemready = False
Dim dr As DataRow = e.DataTable.addnew
dr("事项") = e.DataRow("事项")
dr("事项结果") = e.DataRow("事项") & "_逾期"
systemready = True
End If
End If