这是我的问题。我目前正在尝试将 DataWindow 打印到 PowerBuilder 12.5 中的 PDF 文件。我得到了一些代码,它目前看起来像这样。
//dw_1.Modify("Datawindow.Export.PDF.Method = Distill! ")
//dw_1.Modify("DataWindow.Export.PDF.Method = XSLFOP! ")
dw_1.Object.DataWindow.Export.PDF.Method = Distill!
//dw_1.Object.DataWindow.Printer = "\\prntsrvr\pr-6"
dw_1.Object.DataWindow.Export.PDF.Distill.CustomPostScript="No"
dw_1.SaveAs("c:\dw_one.pdf", PDF!, false)
我在机器上安装了 GhostScript,但我在某些地方读到需要创建新打印机并在 PB 驱动程序目录中设置一些驱动程序。有人可以启发我吗?