我已将输出保存(通常每次都有变化)作为MS Access Table。我需要将表格内容作为“pdf”文件提交给我的客户。有人可以帮我打印或导出MS Access表内容为pdf格式。
我在VB6.0中尝试了DataReport,我无法将输出保存为pdf。我得到“报告宽度大于纸张宽度”。
当我手动将MS Access表导出为pdf时,没有错误。
我的打印DataReport编码在这里,
With DataReport
.ExportFormats.Add "OutputReport4", rptFmtText, "OutputReport (*.pdf)", "*.pdf"
.ExportReport "OutputReport4", , False, True, rptRangeAllPages
.PrintReport True
End With
有人可以帮助我吗...