我想实现当表(“兴业银行交易明细”)(以下称表1)中列(“客户”)的值等于表("目录表“)(以下称表2)的列(”客户“)时,
表一的(“外勤”)和(“内勤”)列等于表2的(“外勤”)列和(“内勤”)列,下面的代码我写在datacolchanged 事件中,错在哪里
Dim A As Row= Tables("兴业银行交易明细查询").currentDim n As String = A("客户")Dim b As DataRow=DataTables("目录表").find("客户 = n") If b IsNot Nothing Then If A("客户")=b("客户") Then A("外勤")=b("外勤") A("内勤")=b("内勤") End IfEnd If