If Forms("w_make").Opened Then '如果窗口已经打开
If e.Table.current IsNot Nothing Then
Dim dr As DataRow = e.Table.Current.DataRow
Dim nms() As String = {"Table1","Table2","Table3"} '请改为各个Table控件的实际名称
For Each nm As String In nms
Dim tbl As Table = Tables("w_make" & "_" & nm)
Dim wz As Integer = tbl.FindRow(dr)
If wz >=0 Then
tbl.Position=wz
End If
Next
End If
End If
只是非常的不理解,通常最多一个副本,怎么同一个表在同一个窗口会出现五个副本?
[此贴子已经被作者于2013-11-28 15:39:46编辑过]