明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 4367|回复: 3

打印PDF文件时,怎么才能控制输出的PDF文件的路径和文件名?

[复制链接]
发表于 2007-7-11 09:19:00 | 显示全部楼层 |阅读模式
本帖最后由 作者 于 2007-7-12 17:52:55 编辑

利用虚拟打印机生产PDF文件,

储存的时候要怎样才能控制PDF文件的文件名和路径

谢谢 各位了

发表于 2007-8-21 08:14:00 | 显示全部楼层

帮你顶起来吧

我也在考虑这个问题

如果每次都自己输入文件名也太麻烦了 我有好几百张图呢

发表于 2007-8-21 10:57:00 | 显示全部楼层
设置一个pc3打印机,在该打印机的设置里设置好pdf的输出路径,每次打印都用该打印机就行了
发表于 2007-8-22 14:59:00 | 显示全部楼层

Public Sub MakePDF(ByVal strPDFFileName As String)

            ' Define the postscript and .pdf file names.

            Dim strPSFileName As String

            Dim xlWorksheet As Worksheet

            Dim objPdfDistiller As PdfDistiller

            strPSFileName = Left(strPDFFileName, InStrRev(strPDFFileName, "\")) & "tmpPostScript.ps"

            ' Print the Excel ActiveSheet to the postscript file

            Set xlWorksheet = ActiveSheet

            Call xlWorksheet.PrintOut(copies:=1, preview:=False, ActivePrinter:="Acrobat Distiller", printtofile:=True, collate:=True, prtofilename:=strPSFileName)

            ' Convert the postscript file to .pdf

            Set objPdfDistiller = New PdfDistiller

            Call objPdfDistiller.FileToPDF(strPSFileName, strPDFFileName, "")

            ' Finally, delete the postscript file

            Call Kill(strPSFileName)

        End Sub

参考以下这个代码哦 会有帮助的

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-26 12:46 , Processed in 0.178018 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表