用专业报表吧。
Dim doc As New PrintDoc '定义一个报表
For i As Integer = 1 To 10
Dim rt As New prt.RenderTable() '定义一个表格对象
doc.Body.Children.Add(rt) '将表格对象加入到报表中
rt.Style.GridLines.All = New prt.Linedef '设置网格线
rt.Style.Spacing.Bottom = 20
rt.Cells(0,0).Text = "订单名称"
rt.Cells(0,1).Text = "停车卡"
rt.Cells(1,0).Text = "盒装数量"
rt.Cells(1,1).Text = "第" & i & "盒"
rt.Cells(2,0).Text = "号段"
rt.Cells(2,1).Text = "NO." & format((i-1)*200+1, "00000") & "-NO." & Format(i*200, "00000")
Next
doc.Preview() '预览报表
http://www.foxtable.com/help/topics/1199.htm