以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  怎么把子表1列多行的数据 合并到父表显示  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=85687)

--  作者:Goldarowana
--  发布时间:2016/5/31 21:25:00
--  怎么把子表1列多行的数据 合并到父表显示

怎么把子表1列多行的数据 合并到父表显示,父表的A列 要显示 子表A列每行数据合并的信息,例如:子表A列 行1为A 行2为B 行3为a,父表A列要显示ABa


--  作者:大红袍
--  发布时间:2016/5/31 22:09:00
--  

参考,代码

 

If e.DataCol.Name = "第一列" Then
    Dim pdr As DataRow = DataTables("父表").find("合同编号 = \'" & e.DataRow("合同编号") & "\'")
    If pdr IsNot Nothing Then
        Dim str As String = ""
        For Each dr As DataRow In DataTables("子表").Select("合同编号 = \'" & e.DataRow("合同编号") & "\'")
            str & = dr("审核意见") & vbcrlf
        Next
        pdr("审核意见") = str.trim(chr(10), chr(13))
    End If
End If

[此贴子已经被作者于2016/5/31 22:09:48编辑过]