如,以此类推
[客户] + '在' + [日期] + '购买了' + [产品]
也可以用datacolchanged事件
http://www.foxtable.com/help/topics/1469.htm
一样的意思,直接合并起来就行啊。
Dim doc As New PrintDoc '定义一个新报表Dim tb As Table = Tables("表A")Dim dr As Row = tb.currentDim txt As new prt.RenderTexttxt.text = dr("第一列") & " " & dr("第二列")doc.Body.Children.Add(txt) '将表格加入到报表doc.Preview()