Dim doc As New Printdoc
Dim rx1,rx2 As new prt.RenderText
rx1.text = Tables("表A").Current("第一列")
rx1.Style.Font = New Font("宋体", 16, FontStyle.Bold)
doc.Body.Children.Add(rx1)
rx1.Style.Spacing.Bottom = 30
rx2.text = Tables("表A").Current("第二列")
rx2.Style.Font = New Font("黑体", 16, FontStyle.Bold)
doc.Body.Children.Add(rx2)
doc.Preview()
这个该如何处理呢