以下代码是根据完工日期与交货日期的比较来勾选按期完工列,完工日期<=交货日期,则勾选[按期完工]
红色代码行怎么写?
If e.DataCol.Name = "完工日期" Then If e.DataRow.IsNull("交货日期") Then e.DataRow("按期完工") = False Else If e.DataRow("完工日期") - e.DataRow("交货日期") <=0 Then e.DataRow("按期完工") = True End If End IfEnd If