Dim doc As New PrintDoc '定义一个报表
Dim rx As prt.RenderText '定义一个文本对象
Dim x As Integer = e.Form.Controls("TextBox1").WriteValue '定义水平偏移参数
Dim y As Integer = e.Form.Controls("TextBox2").WriteValue '定义垂直偏移参数
Dim CurRow As Row = Tables("员工").Current
rx = new prt.RenderText
rx.Text = CurRow("姓名")
rx.x = 51 + x '设置坐标的时候,注意加上偏移参数
rx.y = 36 + y
doc.body.Children.Add(rx)
rx = new prt.RenderText
rx.Text = CurRow("出生日期")
rx.x = 109 + x
rx.y = 36 + y
doc.body.Children.Add(rx)
'加入更多的打印对象....
Doc.Preview() '预览报表