删除一行怎么能够引起其他表自动呢。
If e.DataRow.IsNull("计划日期") = False AndAlso e.DataRow.IsNull("部门") = False AndAlso e.DataRow.IsNull("物料编码") = False Then
Dim s As String = format(e.DataRow("计划日期"), "yyyy年MM月")
DataTables("计划耗用结存").Datacols("发生年月").RaiseDataColChanged("[物料编码] = '" & e.DataRow("物料编码") & "'and [发生年月]='" & s & "'and [部门]='" & e.DataRow("部门") & "'")
End If
我在表事件 datarowdeleting中编写了上述代码,但是删除行后并没有在计划耗用结存表中发生变化。