参考帮助
http://www.foxtable.com/help/topics/1451.htm
If e.DataCol.Name = "姓名" Then
If e.NewValue Is Nothing Then '
e.DataRow("一月") = Nothing '
e.DataRow("二月") = Nothing '
Else
Dim dr As DataRow
'否则在产品表查找同名的产品行,将找到的行赋值给变量dr
dr = DataTables("表A").Find("[姓名] = '" & e.NewValue & "'")
If dr IsNot Nothing Then '如果找到了同名的产品行,也就是dr不是Nothing
e.DataRow("一月") = dr("一月")
e.DataRow("二月") = dr("二月")
End If
End If
End If