[求助][求助]如何让日期加一天 Post By:2021/12/31 22:03:00 [显示全部帖子]
这是原代码:
With Tables("基本数据.聘任") If .Current Is Nothing OrElse .Current.DataRow.RowState = DataRowState.Unchanged Then
Dim r As Row = Tables("基本数据.聘任").AddNew() If r.Index > 0 Then r("等级") = Tables("基本数据.聘任").Rows(r.Index-1 )("等级") r("聘任起始日") = Tables("基本数据.聘任").Rows(r.Index-1 )("聘任到期日") End If End If End With