Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
只能写代码了。
如在DataRowAdded事件代码设置代码
e.DataRow("Identify") = DataTables("表A").Compute("Max(Identify)")+1
在DataRowDeleted事件中设计
Dim i As Integer
For Each dr As DataRow In DataTables("表A").DataRows
i = i + 1
dr("Identify") = i
Next
不要追求编号的连续,编号是行的身份标记,不能因为某行被删除,就修改其他行的编号。
再说连续有何意义呢? Foxtable不是已经有行号列了吗?