以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  项目发布  (http://foxtable.com/bbs/list.asp?boardid=5)
----  子行具有多个父行  (http://foxtable.com/bbs/dispbbs.asp?boardid=5&id=82449)

--  作者:ldchlindacheng
--  发布时间:2016/3/17 21:53:00
--  子行具有多个父行
增加表达式列提示子行具有多个父行,怎么解决?


--  作者:四月清风
--  发布时间:2016/3/29 10:28:00
--  
不要用表达式列,改成普通列,然后增加代码去查找并赋值
Dim dr As DataRow
dr = DataTables("父表").Find("[ID] = \'" & e.NewValue & "\'")
If dr IsNot Nothing Then \'如果找到了,也就是dr不是Nothing
    e.DataRow("内容") = dr("内容")
End If