对表B的那些行生效呢?
如果要定位的话就一定要在表A和表B之间建立关联,才能定位到表B的相关行
下面这个是表A是父表,表B是子表的例子
写在表A的事件中datacolchanged中
if e.datacol.name = "逻辑列名" then
dim drs as list (of datarow) = e.datarow.getchildrows("表B")
if drs.count > 0 and e.newvalue = true then
for each dr as datarow in drs
dr("第一列")=dr("第一列")+1
next
endif