方法1、在同步的加载的地方加载子表数据,类似:http://www.foxtable.com/webhelp/topics/2228.htm2、要发送的消息的规则是自己定义的,想要做什么可以自己定义更详细的规则,比如
Dim msg As String = p & "成品信息表" & "#" & r("_Identify") & “#BOM清单”
然后在接收的时候
ElseIf msg.StartsWith("A#") Then '表示增加了行
Dim pts() As String = msg.Split("#")
If pts.Length >= 3 Then
dim drs = DataTables(pts(1)).AppendLoad("[_Identify] = " & pts(2)) '追载新增加的行.
If pts.Length =4 andalso drs.count > 0 Then
DataTables(pts(3)).Loadfilter = "关联列='" & drs(0)("关联列") & "'"
DataTables(pts(3)).Load
End If
End If