If e.DataCol.Name = "员工姓名" Then
Dim dr As DataRow
dr = DataTables("员工表").find("员工姓名 = '" & e.DataRow("员工姓名") & "'" )
If dr IsNot Nothing Then
e.DataRow("编号") = dr("编号")
e.DataRow("部门") = dr("部门")
End If