使用vb6.0将MS Access Table打印为pdf

时间:2018-02-21 13:32:59

标签: ms-access vb6 access-vba

我已将输出保存(通常每次都有变化)作为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

有人可以帮助我吗...

0 个答案:

没有答案