实例介绍
PDFCreator-1_7_2版本的源码
【实例截图】
【核心代码】
u011260783-9045875-PDFCreator-1_7_2源码.zip
├── COM
│ ├── COM Interface
│ │ ├── clsPDFCreatorInterface.cls
│ │ ├── modGeneral.bas
│ │ ├── modOptions.bas
│ │ ├── PDFCreator.exe
│ │ └── PDFCreator.vbp
│ ├── CreateDocu.vbs
│ └── Samples
│ ├── Dot Net
│ │ └── VS2005
│ │ ├── C#
│ │ │ ├── Sample1
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ └── Sample1.csproj
│ │ │ └── Sample2
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ └── Sample2.csproj
│ │ └── Visual Basic
│ │ ├── Sample1
│ │ │ ├── AssemblyInfo.vb
│ │ │ ├── Form1.resx
│ │ │ ├── Form1.vb
│ │ │ └── Sample1.vbproj
│ │ └── Sample2
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ └── Sample2.vbproj
│ ├── DOTNET Scripting Host
│ │ ├── readme.txt
│ │ └── Sample1.dsh
│ ├── MS Office
│ │ ├── frmPDFCreatorExcel.frm
│ │ ├── frmPDFCreatorExcel.frx
│ │ ├── frmPDFCreatorWord.frm
│ │ ├── frmPDFCreatorWord.frx
│ │ └── modPDFCreatorAccess2000.bas
│ ├── Perl
│ │ ├── Convert2PDF.pl
│ │ ├── Convert2TIFF.pl
│ │ ├── Convert2TXT.pl
│ │ └── Testpage2PDF.pl
│ ├── Python
│ │ ├── Convert2PDF.py
│ │ ├── SaveOptionsToFile.py
│ │ ├── TestEvents.py
│ │ └── Testpage2PDF.py
│ ├── Ruby
│ │ ├── Convert2PDF.rb
│ │ ├── Convert2TIFF.rb
│ │ └── Testpage2PDF.rb
│ ├── VB6
│ │ ├── Sample1
│ │ │ ├── Form1.frm
│ │ │ ├── Form1.frx
│ │ │ ├── Sample1.RES
│ │ │ └── Sample1.vbp
│ │ └── Sample2
│ │ ├── Form1.frm
│ │ └── Sample2.vbp
│ ├── WinBatch
│ │ └── Convert2PDF.wbt
│ └── Windows Scripting Host
│ ├── JScript
│ │ ├── Convert2PDF.js
│ │ ├── Convert2TIFF.js
│ │ ├── Convert2TXT.js
│ │ ├── TestEvents.js
│ │ └── Testpage2PDF.js
│ └── VBScript
│ ├── CombineAndAddBookmarks.vbs
│ ├── CombineJobs.vbs
│ ├── CompareColorCompressionModes.vbs
│ ├── Convert2PDFAndPrint.vbs
│ ├── Convert2PDF.vbs
│ ├── Convert2TIFF.vbs
│ ├── Convert2TXT.vbs
│ ├── ConvertJPEG2PDF.vbs
│ ├── GhostscriptDirect.vbs
│ ├── GUI.vbs
│ ├── MSOffice2PDF.vbs
│ ├── Printers.vbs
│ ├── Profiles.vbs
│ ├── PS2PDF.vbs
│ ├── SaveOptionsToFile.vbs
│ ├── ShowLogfile.vbs
│ ├── ShowOptions.vbs
│ ├── ShowPrintjobInfos.vbs
│ ├── TestCompression1.vbs
│ ├── TestEvents.vbs
│ ├── Testpage2PDFSendEmail.vbs
│ ├── Testpage2PDF.vbs
│ └── URL2PDF.vbs
├── Common
│ ├── clsDownload.cls
│ ├── clsHash.cls
│ ├── clsINI.cls
│ ├── clsMutex.cls
│ ├── clsRegistry.cls
│ ├── clsStdIO.cls
│ ├── clsTimeZoneInformation.cls
│ ├── clsTools.cls
│ ├── clsURL.cls
│ ├── dmFrame.ctl
│ ├── dmFrame.ctx
│ ├── isExplorerBar.ctl
│ ├── isExplorerBar.ctx
│ ├── Line3D.ctl
│ ├── Line3D.ctx
│ ├── modApiConstants.bas
│ ├── modApiFunctions.bas
│ ├── modApiTypesEnums.bas
│ ├── modArguments.bas
│ ├── modCDlg.bas
│ ├── modCollAddSorted.bas
│ ├── modFileInUse.bas
│ ├── modFileversion.bas
│ ├── modGeneral2.bas
│ ├── modGeneral.bas
│ ├── modGetFilename.bas
│ ├── modGetFiles.bas
│ ├── modGlobal1.bas
│ ├── modGlobal2.bas
│ ├── modINIFastRead.bas
│ ├── modIP.bas
│ ├── modIsAdmin.bas
│ ├── modLanguages.bas
│ ├── modNetuser.bas
│ ├── modOptions2.bas
│ ├── modOptions.bas
│ ├── modPanelControl.bas
│ ├── modPDF.bas
│ ├── modPDFCreator.bas
│ ├── modProfiles.bas
│ ├── modServices.bas
│ ├── modTimer.bas
│ ├── modWindowsVersion.bas
│ ├── PDFCreator_ErrPtnrDialog.frm
│ ├── XP_ProgressBar.ctl
│ └── XP_ProgressBar.ctx
├── DeveloperTool
│ ├── DeveloperTool.vbp
│ ├── frmLanguage.frm
│ ├── frmLanguage.frx
│ ├── frmMain.frm
│ ├── frmMain.frx
│ ├── frmOption.frm
│ ├── frmOption.frx
│ ├── frmPassword.frm
│ ├── frmPassword.frx
│ ├── frmText.frm
│ ├── frmText.frx
│ ├── Icons
│ │ ├── FromClipboard.ico
│ │ └── ToClipboard.ico
│ ├── modBrowseForFolder.bas
│ ├── Options
│ │ └── Options.txt
│ ├── Stamppage
│ │ └── Stamppage.ps
│ ├── Testpage
│ │ └── PDFCreator.ps
│ └── WinPrinterRegData
│ ├── Win9xPrinterRegData.reg
│ └── WinNTPrinterRegData.reg
├── Help
│ ├── english
│ │ ├── html
│ │ │ ├── acknowledgements.html
│ │ │ ├── actions.html
│ │ │ ├── adobe-reader-stays-open-when-a-script-is-used-to-combine-pdfs.html
│ │ │ ├── after-installing-pdfcreator-a-msi-installer-shows-up.html
│ │ │ ├── after-installing-pdfcreator-i-get-an-error-exception-einouterror-in-module-isxxxxxexe-at-0000631c-file-not-found.html
│ │ │ ├── autosave-mode.html
│ │ │ ├── blank-page-with-unicode-characters-in-the-filename.html
│ │ │ ├── bmp.html
│ │ │ ├── change-the-language.html
│ │ │ ├── clspdfcreatorerror.html
│ │ │ ├── clspdfcreator.html
│ │ │ ├── clspdfcreatoroptions.html
│ │ │ ├── colors.html
│ │ │ ├── combine-documents.html
│ │ │ ├── com-interface.html
│ │ │ ├── command-line-parameters.html
│ │ │ ├── compression.html
│ │ │ ├── create-a-language-file.html
│ │ │ ├── create-a-pdf.html
│ │ │ ├── document-properties.html
│ │ │ ├── email-a-pdf.html
│ │ │ ├── eps.html
│ │ │ ├── fairplay-license.html
│ │ │ ├── features.html
│ │ │ ├── font-settings.html
│ │ │ ├── fonts.html
│ │ │ ├── format-settings.html
│ │ │ ├── frequently-asked-questions-faq.html
│ │ │ ├── general.html
│ │ │ ├── general-settings.html
│ │ │ ├── ghostscript-settings.html
│ │ │ ├── gnu-general-public-license.html
│ │ │ ├── group-policies.html
│ │ │ ├── hidden-settings.html
│ │ │ ├── how-can-i-translate-pdfcreator-into-my-language.html
│ │ │ ├── how-to-uninstall-pdfcreator.html
│ │ │ ├── i-have-net-3x-installed-but-there-is-no-pdfforgedll.html
│ │ │ ├── i-have-selected-letter-8511-as-paperformat-in-wordexcel-but-the-generated-pdfs-are-in-a4.html
│ │ │ ├── install-a-language-file.html
│ │ │ ├── installation-on-a-terminal-server.html
│ │ │ ├── introduction.html
│ │ │ ├── is-pdfcreator-really-free.html
│ │ │ ├── jpeg.html
│ │ │ ├── license.html
│ │ │ ├── my-antivirus-program-says-that-pdfcreator-contains-a-virus-dont-you-check-your-files.html
│ │ │ ├── pcl.html
│ │ │ ├── pcx.html
│ │ │ ├── pdfcreator-online.html
│ │ │ ├── pdfcreator-user-manual.html
│ │ │ ├── pdf.html
│ │ │ ├── png.html
│ │ │ ├── print.html
│ │ │ ├── problem-with-adobe-printing-incorrectly-sized-pages.html
│ │ │ ├── program-settings.html
│ │ │ ├── psd.html
│ │ │ ├── ps.html
│ │ │ ├── raw.html
│ │ │ ├── save-settings.html
│ │ │ ├── security.html
│ │ │ ├── settings-in-pdfcreator.html
│ │ │ ├── setup-command-line-parameters.html
│ │ │ ├── setup-error-pdfcreator-is-already-installed.html
│ │ │ ├── signing.html
│ │ │ ├── support-pdfcreator.html
│ │ │ ├── svg.html
│ │ │ ├── text.html
│ │ │ ├── the-degree-symbol-overlaps-the-following-character.html
│ │ │ ├── the-printer-driver-is-not-compatible-with-a-policy-enabled-on-your-computer.html
│ │ │ ├── the-translation-tool.html
│ │ │ ├── tiff.html
│ │ │ ├── unicode-in-stamp-not-working.html
│ │ │ ├── updating-pdfcreator.html
│ │ │ ├── using-multiple-printers.html
│ │ │ ├── using-pdfcreator.html
│ │ │ ├── using-profiles.html
│ │ │ ├── what-is-a-language-file.html
│ │ │ ├── what-is-pdfcreator.html
│ │ │ ├── what-is-the-export-control-classification-number-eccn-of-pdfcreator.html
│ │ │ ├── whats-new.html
│ │ │ ├── where-are-my-printersmultiple-printers-not-shown-win-7.html
│ │ │ ├── why-cant-some-scripts-be-executed-under-vista-64-bit--windows-7-64-bit.html
│ │ │ ├── why-does-black-text-appear-to-be-slightly-grey.html
│ │ │ ├── why-doesnt-pdfcreator-use-my-original-filename.html
│ │ │ └── word-documents-with-custom-page-size-are-converted-in-default-size.html
│ │ ├── index.hhk
│ │ ├── media
│ │ │ ├── grad.gif
│ │ │ └── helpstyle.css
│ │ ├── PDFCreator.hhp
│ │ └── toc.hhc
│ ├── french
│ │ ├── html
│ │ │ ├── acknowledgements.html
│ │ │ ├── actions.html
│ │ │ ├── adobe-reader-stays-open-when-a-script-is-used-to-combine-pdfs.html
│ │ │ ├── after-installing-pdfcreator-a-msi-installer-shows-up.html
│ │ │ ├── after-installing-pdfcreator-i-get-an-error-exception-einouterror-in-module-isxxxxxexe-at-0000631c-file-not-found.html
│ │ │ ├── autosave-mode.html
│ │ │ ├── blank-page-with-unicode-characters-in-the-filename.html
│ │ │ ├── bmp.html
│ │ │ ├── change-the-language.html
│ │ │ ├── clspdfcreatorerror.html
│ │ │ ├── clspdfcreator.html
│ │ │ ├── clspdfcreatoroptions.html
│ │ │ ├── colors.html
│ │ │ ├── combine-documents.html
│ │ │ ├── com-interface.html
│ │ │ ├── command-line-parameters.html
│ │ │ ├── compression.html
│ │ │ ├── create-a-language-file.html
│ │ │ ├── create-a-pdf.html
│ │ │ ├── document-properties.html
│ │ │ ├── email-a-pdf.html
│ │ │ ├── eps.html
│ │ │ ├── fairplay-license.html
│ │ │ ├── features.html
│ │ │ ├── font-settings.html
│ │ │ ├── fonts.html
│ │ │ ├── format-settings.html
│ │ │ ├── frequently-asked-questions-faq.html
│ │ │ ├── general.html
│ │ │ ├── general-settings.html
│ │ │ ├── ghostscript-settings.html
│ │ │ ├── gnu-general-public-license.html
│ │ │ ├── group-policies.html
│ │ │ ├── hidden-settings.html
│ │ │ ├── how-can-i-translate-pdfcreator-into-my-language.html
│ │ │ ├── how-to-uninstall-pdfcreator.html
│ │ │ ├── i-have-net-3x-installed-but-there-is-no-pdfforgedll.html
│ │ │ ├── i-have-selected-letter-8511-as-paperformat-in-wordexcel-but-the-generated-pdfs-are-in-a4.html
│ │ │ ├── install-a-language-file.html
│ │ │ ├── installation-on-a-terminal-server.html
│ │ │ ├── introduction.html
│ │ │ ├── is-pdfcreator-really-free.html
│ │ │ ├── jpeg.html
│ │ │ ├── license.html
│ │ │ ├── my-antivirus-program-says-that-pdfcreator-contains-a-virus-dont-you-check-your-files.html
│ │ │ ├── pcl.html
│ │ │ ├── pcx.html
│ │ │ ├── pdfcreator-online.html
│ │ │ ├── pdfcreator-user-manual.html
│ │ │ ├── pdf.html
│ │ │ ├── png.html
│ │ │ ├── print.html
│ │ │ ├── problem-with-adobe-printing-incorrectly-sized-pages.html
│ │ │ ├── program-settings.html
│ │ │ ├── psd.html
│ │ │ ├── ps.html
│ │ │ ├── raw.html
│ │ │ ├── save-settings.html
│ │ │ ├── security.html
│ │ │ ├── settings-in-pdfcreator.html
│ │ │ ├── setup-command-line-parameters.html
│ │ │ ├── setup-error-pdfcreator-is-already-installed.html
│ │ │ ├── signing.html
│ │ │ ├── support-pdfcreator.html
│ │ │ ├── svg.html
│ │ │ ├── text.html
│ │ │ ├── the-degree-symbol-overlaps-the-following-character.html
│ │ │ ├── the-printer-driver-is-not-compatible-with-a-policy-enabled-on-your-computer.html
│ │ │ ├── the-translation-tool.html
│ │ │ ├── tiff.html
│ │ │ ├── unicode-in-stamp-not-working.html
│ │ │ ├── updating-pdfcreator.html
│ │ │ ├── using-multiple-printers.html
│ │ │ ├── using-pdfcreator.html
│ │ │ ├── using-profiles.html
│ │ │ ├── what-is-a-language-file.html
│ │ │ ├── what-is-pdfcreator.html
│ │ │ ├── what-is-the-export-control-classification-number-eccn-of-pdfcreator.html
│ │ │ ├── whats-new.html
│ │ │ ├── where-are-my-printersmultiple-printers-not-shown-win-7.html
│ │ │ ├── why-cant-some-scripts-be-executed-under-vista-64-bit--windows-7-64-bit.html
│ │ │ ├── why-does-black-text-appear-to-be-slightly-grey.html
│ │ │ ├── why-doesnt-pdfcreator-use-my-original-filename.html
│ │ │ └── word-documents-with-custom-page-size-are-converted-in-default-size.html
│ │ ├── index.hhk
│ │ ├── media
│ │ │ ├── grad.gif
│ │ │ └── helpstyle.css
│ │ ├── PDFCreator.hhp
│ │ └── toc.hhc
│ ├── german
│ │ ├── html
│ │ │ ├── acknowledgements.html
│ │ │ ├── actions.html
│ │ │ ├── adobe-reader-stays-open-when-a-script-is-used-to-combine-pdfs.html
│ │ │ ├── after-installing-pdfcreator-a-msi-installer-shows-up.html
│ │ │ ├── after-installing-pdfcreator-i-get-an-error-exception-einouterror-in-module-isxxxxxexe-at-0000631c-file-not-found.html
│ │ │ ├── autosave-mode.html
│ │ │ ├── blank-page-with-unicode-characters-in-the-filename.html
│ │ │ ├── bmp.html
│ │ │ ├── change-the-language.html
│ │ │ ├── clspdfcreatorerror.html
│ │ │ ├── clspdfcreator.html
│ │ │ ├── clspdfcreatoroptions.html
│ │ │ ├── colors.html
│ │ │ ├── combine-documents.html
│ │ │ ├── com-interface.html
│ │ │ ├── command-line-parameters.html
│ │ │ ├── compression.html
│ │ │ ├── create-a-language-file.html
│ │ │ ├── create-a-pdf.html
│ │ │ ├── document-properties.html
│ │ │ ├── email-a-pdf.html
│ │ │ ├── eps.html
│ │ │ ├── fairplay-license.html
│ │ │ ├── features.html
│ │ │ ├── font-settings.html
│ │ │ ├── fonts.html
│ │ │ ├── format-settings.html
│ │ │ ├── frequently-asked-questions-faq.html
│ │ │ ├── general.html
│ │ │ ├── general-settings.html
│ │ │ ├── ghostscript-settings.html
│ │ │ ├── gnu-general-public-license.html
│ │ │ ├── group-policies.html
│ │ │ ├── hidden-settings.html
│ │ │ ├── how-can-i-translate-pdfcreator-into-my-language.html
│ │ │ ├── how-to-uninstall-pdfcreator.html
│ │ │ ├── i-have-net-3x-installed-but-there-is-no-pdfforgedll.html
│ │ │ ├── i-have-selected-letter-8511-as-paperformat-in-wordexcel-but-the-generated-pdfs-are-in-a4.html
│ │ │ ├── install-a-language-file.html
│ │ │ ├── installation-on-a-terminal-server.html
│ │ │ ├── introduction.html
│ │ │ ├── is-pdfcreator-really-free.html
│ │ │ ├── jpeg.html
│ │ │ ├── license.html
│ │ │ ├── my-antivirus-program-says-that-pdfcreator-contains-a-virus-dont-you-check-your-files.html
│ │ │ ├── pcl.html
│ │ │ ├── pcx.html
│ │ │ ├── pdfcreator-online.html
│ │ │ ├── pdfcreator-user-manual.html
│ │ │ ├── pdf.html
│ │ │ ├── png.html
│ │ │ ├── print.html
│ │ │ ├── problem-with-adobe-printing-incorrectly-sized-pages.html
│ │ │ ├── program-settings.html
│ │ │ ├── psd.html
│ │ │ ├── ps.html
│ │ │ ├── raw.html
│ │ │ ├── save-settings.html
│ │ │ ├── security.html
│ │ │ ├── settings-in-pdfcreator.html
│ │ │ ├── setup-command-line-parameters.html
│ │ │ ├── setup-error-pdfcreator-is-already-installed.html
│ │ │ ├── signing.html
│ │ │ ├── support-pdfcreator.html
│ │ │ ├── svg.html
│ │ │ ├── text.html
│ │ │ ├── the-degree-symbol-overlaps-the-following-character.html
│ │ │ ├── the-printer-driver-is-not-compatible-with-a-policy-enabled-on-your-computer.html
│ │ │ ├── the-translation-tool.html
│ │ │ ├── tiff.html
│ │ │ ├── unicode-in-stamp-not-working.html
│ │ │ ├── updating-pdfcreator.html
│ │ │ ├── using-multiple-printers.html
│ │ │ ├── using-pdfcreator.html
│ │ │ ├── using-profiles.html
│ │ │ ├── what-is-a-language-file.html
│ │ │ ├── what-is-pdfcreator.html
│ │ │ ├── what-is-the-export-control-classification-number-eccn-of-pdfcreator.html
│ │ │ ├── whats-new.html
│ │ │ ├── where-are-my-printersmultiple-printers-not-shown-win-7.html
│ │ │ ├── why-cant-some-scripts-be-executed-under-vista-64-bit--windows-7-64-bit.html
│ │ │ ├── why-does-black-text-appear-to-be-slightly-grey.html
│ │ │ ├── why-doesnt-pdfcreator-use-my-original-filename.html
│ │ │ └── word-documents-with-custom-page-size-are-converted-in-default-size.html
│ │ ├── index.hhk
│ │ ├── media
│ │ │ ├── grad.gif
│ │ │ └── helpstyle.css
│ │ ├── PDFCreator.hhp
│ │ └── toc.hhc
│ └── readme.txt
├── LangInstall
│ ├── frmMain.frm
│ ├── frmMain.frx
│ └── LangInstall.vbp
├── PDFCreator
│ ├── clsGhostscript.cls
│ ├── clsInfoSpoolFile.cls
│ ├── clsInfoSpoolFileInfo.cls
│ ├── clsPDFCreator.cls
│ ├── clsPDFCreatorError.cls
│ ├── clsPDFCreatorMail.cls
│ ├── clsPDFCreatorOptions.cls
│ ├── clsSpoolFile.cls
│ ├── clsStdIO.cls
│ ├── clsSystem.cls
│ ├── clsToolTip.cls
│ ├── clsUpdate.cls
│ ├── comments.txt
│ ├── ctlOptActions.ctl
│ ├── ctlOptActions.ctx
│ ├── ctlOptAutosave.ctl
│ ├── ctlOptAutosave.ctx
│ ├── ctlOptDirectories.ctl
│ ├── ctlOptDirectories.ctx
│ ├── ctlOptDocument.ctl
│ ├── ctlOptDocument.ctx
│ ├── ctlOptFonts.ctl
│ ├── ctlOptFonts.ctx
│ ├── ctlOptFormatBitmap.ctl
│ ├── ctlOptFormatBMP.ctl
│ ├── ctlOptFormatBMP.ctx
│ ├── ctlOptFormatEPS.ctl
│ ├── ctlOptFormatEPS.ctx
│ ├── ctlOptFormatJPEG.ctl
│ ├── ctlOptFormatJPEG.ctx
│ ├── ctlOptFormatPCL.ctl
│ ├── ctlOptFormatPCL.ctx
│ ├── ctlOptFormatPCX.ctl
│ ├── ctlOptFormatPCX.ctx
│ ├── ctlOptFormatPDF.ctl
│ ├── ctlOptFormatPDF.ctx
│ ├── ctlOptFormatPNG.ctl
│ ├── ctlOptFormatPNG.ctx
│ ├── ctlOptFormatPostscript.ctl
│ ├── ctlOptFormatPS.ctl
│ ├── ctlOptFormatPS.ctx
│ ├── ctlOptFormatPSD.ctl
│ ├── ctlOptFormatPSD.ctx
│ ├── ctlOptFormatRAW.ctl
│ ├── ctlOptFormatRAW.ctx
│ ├── ctlOptFormatSVG.ctl
│ ├── ctlOptFormatSVG.ctx
│ ├── ctlOptFormatTIFF.ctl
│ ├── ctlOptFormatTIFF.ctx
│ ├── ctlOptFormatTXT.ctl
│ ├── ctlOptFormatTXT.ctx
│ ├── ctlOptFormatXCF.ctl
│ ├── ctlOptFormatXCF.ctx
│ ├── ctlOptGeneral.ctl
│ ├── ctlOptGeneral.ctx
│ ├── ctlOptGhostscript.ctl
│ ├── ctlOptGhostscript.ctx
│ ├── ctlOptLanguages.ctl
│ ├── ctlOptLanguages.ctx
│ ├── ctlOptPrint.ctl
│ ├── ctlOptPrint.ctx
│ ├── ctlOptSave.ctl
│ ├── ctlOptSave.ctx
│ ├── frmAbout.frm
│ ├── frmAbout.frx
│ ├── frmAnimation.frm
│ ├── frmAnimation.frx
│ ├── frmCertificatePassword.frm
│ ├── frmCertificatePassword.frx
│ ├── frmFileinfo.frm
│ ├── frmFileinfo.frx
│ ├── frmInfo.frm
│ ├── frmInfo.frx
│ ├── frmLog.frm
│ ├── frmLog.frx
│ ├── frmMain.frm
│ ├── frmMain.frx
│ ├── frmOptions.frm
│ ├── frmOptions.frx
│ ├── frmPassword.frm
│ ├── frmPassword.frx
│ ├── frmPrinters.frm
│ ├── frmPrinters.frx
│ ├── frmPrintfiles.frm
│ ├── frmPrintfiles.frx
│ ├── frmPrinting.frm
│ ├── frmPrinting.frx
│ ├── frmProfile.frm
│ ├── frmProfile.frx
│ ├── frmSwitchDefaultprinter.frm
│ ├── frmSwitchDefaultprinter.frx
│ ├── frmSysTray.frm
│ ├── frmSysTray.frx
│ ├── Languages
│ │ ├── bosnian.ini
│ │ ├── catalan.ini
│ │ ├── catalan_valencia.ini
│ │ ├── chinese_simplified.ini
│ │ ├── chinese_traditional.ini
│ │ ├── corsican.ini
│ │ ├── croatian.ini
│ │ ├── czech.ini
│ │ ├── danish.ini
│ │ ├── dutch.ini
│ │ ├── english.ini
│ │ ├── estonian.ini
│ │ ├── finnish.ini
│ │ ├── french.ini
│ │ ├── galician.ini
│ │ ├── german.ini
│ │ ├── greek.ini
│ │ ├── hebrew.ini
│ │ ├── hungarian.ini
│ │ ├── irish.ini
│ │ ├── italian.ini
│ │ ├── latvian.ini
│ │ ├── ligurian.ini
│ │ ├── lithuanian.ini
│ │ ├── norwegian_bokmal.ini
│ │ ├── polish.ini
│ │ ├── portuguese_br.ini
│ │ ├── romanian.ini
│ │ ├── russian.ini
│ │ ├── serbian_cyrillic.ini
│ │ ├── slovak.ini
│ │ ├── slovenian.ini
│ │ ├── spanish.ini
│ │ ├── swedish.ini
│ │ ├── turkish.ini
│ │ ├── ukrainian.ini
│ │ └── valencian_avl.ini
│ ├── modBrowseFolder.bas
│ ├── modFileTimes.bas
│ ├── modGhostScript.bas
│ ├── modGsApi.bas
│ ├── modImage2PS.bas
│ ├── modInfoSpoolFile.bas
│ ├── modJPEG.bas
│ ├── modLvwListItem.bas
│ ├── modMain.bas
│ ├── modPerformance.bas
│ ├── modPrinter.bas
│ ├── modPrinterEnums.bas
│ ├── modPrinterSet.bas
│ ├── modPriority.bas
│ ├── modResAVI.bas
│ ├── modRunProgram.bas
│ ├── modShell.bas
│ ├── modTopMost.bas
│ ├── PDFCreator.ini
│ ├── PDFCreator.RES
│ └── PDFCreator.vbp
├── PDFCreator.vbg
├── Pictures
│ ├── Common
│ │ └── Cursors
│ │ └── hand.cur
│ ├── InstallPrinter
│ │ ├── InstallPrinter.ico
│ │ ├── PDFCreatorBig.bmp
│ │ └── PDFCreator.bmp
│ ├── ManifestManager
│ │ └── ManifestManager.ico
│ ├── PDFCreator
│ │ ├── CertificatsPassword
│ │ │ ├── Invalid.ico
│ │ │ └── Valid.ico
│ │ ├── CombinedDocument.ico
│ │ ├── Homepage.ico
│ │ ├── Options
│ │ │ ├── Actions16.bmp
│ │ │ ├── ActionsEdit.ico
│ │ │ ├── ActionsEdit.pspimage
│ │ │ ├── Actions.ico
│ │ │ ├── Actions.pspimage
│ │ │ ├── ArrowDownDisabled.ico
│ │ │ ├── ArrowDown.ico
│ │ │ ├── Arrow.psp
│ │ │ ├── ArrowUpDisabled.ico
│ │ │ ├── ArrowUp.ico
│ │ │ ├── Autosave16.bmp
│ │ │ ├── AUTOSAVE.ICO
│ │ │ ├── Directories16.bmp
│ │ │ ├── Directories.ICO
│ │ │ ├── Document16.bmp
│ │ │ ├── Document.ico
│ │ │ ├── Fonts16.bmp
│ │ │ ├── fonts.ICO
│ │ │ ├── General16.bmp
│ │ │ ├── General.ico
│ │ │ ├── Ghostscript16.bmp
│ │ │ ├── Ghostscript.ico
│ │ │ ├── Languages16.bmp
│ │ │ ├── MenuAll.ico
│ │ │ ├── MenuBMP.ico
│ │ │ ├── MenuEPS.ico
│ │ │ ├── MenuJPEG.ico
│ │ │ ├── MenuPCL.ico
│ │ │ ├── MenuPCL.png
│ │ │ ├── MenuPCX.ico
│ │ │ ├── MenuPDF.ico
│ │ │ ├── MenuPNG.ico
│ │ │ ├── MenuPSD1.ico
│ │ │ ├── MenuPSD.ico
│ │ │ ├── MenuPS.ico
│ │ │ ├── MenuRAW1.ico
│ │ │ ├── MenuRAW.ico
│ │ │ ├── MenuSVG16.ico
│ │ │ ├── MenuSVG.ico
│ │ │ ├── MenuSVG.pspimage
│ │ │ ├── MenuTemplate.pspimage
│ │ │ ├── MenuTiff.ico
│ │ │ ├── MenuTXT1.ico
│ │ │ ├── MenuTXT.ico
│ │ │ ├── MenuVorlage.ico
│ │ │ ├── MenuXCF1.ico
│ │ │ ├── MenuXCF.ico
│ │ │ ├── OptionsBMP16.bmp
│ │ │ ├── OptionsEPS16.bmp
│ │ │ ├── OptionsJPEG16.bmp
│ │ │ ├── OptionsPCL16.bmp
│ │ │ ├── OptionsPCX16.bmp
│ │ │ ├── OptionsPDF16.bmp
│ │ │ ├── OptionsPNG16.bmp
│ │ │ ├── OptionsPS16.bmp
│ │ │ ├── OptionsPSD16.bmp
│ │ │ ├── OptionsRAW16.bmp
│ │ │ ├── OptionsSVG16.bmp
│ │ │ ├── OptionsTemplate16.ico
│ │ │ ├── OptionsTIFF16.bmp
│ │ │ ├── OptionsTXT16.bmp
│ │ │ ├── OptionsXCF16.bmp
│ │ │ ├── PCL16.ico
│ │ │ ├── PCL.png
│ │ │ ├── Print16.bmp
│ │ │ ├── Print.ico
│ │ │ ├── Profile
│ │ │ │ ├── Add1.gif
│ │ │ │ ├── Add2.gif
│ │ │ │ ├── Delete1.gif
│ │ │ │ ├── Delete2.gif
│ │ │ │ ├── Delete3.gif
│ │ │ │ ├── Image1.pspimage
│ │ │ │ ├── Load1.gif
│ │ │ │ ├── profile.pspimage
│ │ │ │ ├── Rename1.gif
│ │ │ │ ├── Rename2.gif
│ │ │ │ ├── Save1.gif
│ │ │ │ └── Save2.gif
│ │ │ ├── PSD.png
│ │ │ ├── RAW.png
│ │ │ ├── Save16.bmp
│ │ │ ├── Save.ico
│ │ │ ├── Txt.png
│ │ │ ├── UserDir.ico
│ │ │ └── XCF.png
│ │ ├── Paypal.gif
│ │ ├── Paypal.ico
│ │ ├── PDFCreator16.ico
│ │ ├── PDFCreator16x16-4.ico
│ │ ├── PDFCreator16x16-8.ico
│ │ ├── PDFCreator2.ico
│ │ ├── PDFCreator32x32-8.ico
│ │ ├── PDFCreator.avi
│ │ ├── PDFCreator.ico
│ │ ├── PDFCreatorPaypal.bmp
│ │ ├── PDFCreator-SystrayOff.ico
│ │ ├── PDFCreator-SystrayOn2.ico
│ │ ├── PDFCreator-SystrayOn.ico
│ │ ├── PDFCreator-Systray.pspimage
│ │ ├── SingleDocument.ico
│ │ └── Toolbar
│ │ ├── ArrowBottom2.ico
│ │ ├── ArrowBottom8bit.ico
│ │ ├── ArrowBottom.ico
│ │ ├── ArrowDown2.ico
│ │ ├── ArrowDown8bit.ico
│ │ ├── ArrowDown.ico
│ │ ├── ArrowTop2.ico
│ │ ├── ArrowTop8bit.ico
│ │ ├── ArrowTop.ico
│ │ ├── ArrowUp2.ico
│ │ ├── ArrowUp8bit.ico
│ │ ├── ArrowUp.ico
│ │ ├── clipbrdAdd2.ico
│ │ ├── clipbrdAdd8bit.ico
│ │ ├── clipbrdAdd.ico
│ │ ├── Combine3.ico
│ │ ├── Combine8bit.ico
│ │ ├── CombineAll2.ico
│ │ ├── CombineAll8bit.ico
│ │ ├── CombineAll.ico
│ │ ├── Combine.ico
│ │ ├── CombineSend2.ico
│ │ ├── CombineSend8bit.ico
│ │ ├── CombineSend.ico
│ │ ├── Disc8bit.ico
│ │ ├── Disc.ico
│ │ ├── DocAdd2.ico
│ │ ├── DocAdd8bit.ico
│ │ ├── DocAdd.ico
│ │ ├── DocDel2.ico
│ │ ├── DocDel8bit.ico
│ │ ├── DocDel.ico
│ │ ├── DocPrint2.ico
│ │ ├── DocPrint8bit.ico
│ │ ├── DocPrint.ico
│ │ ├── Help8bit.ico
│ │ ├── Help.ico
│ │ ├── Logfile2.ico
│ │ ├── Logfile8bit.ico
│ │ ├── Logfile.ico
│ │ ├── LogFile.pspimage
│ │ ├── Options2.ico
│ │ ├── Options8bit.ico
│ │ ├── Options.ico
│ │ ├── PrinterStopOff2.ico
│ │ ├── PrinterStopOff8bit.ico
│ │ ├── PrinterStopOff.ico
│ │ ├── printerStopOff.pspimage
│ │ ├── PrinterStopOn2.ico
│ │ ├── PrinterStopOn8bit.ico
│ │ ├── PrinterStopOn.ico
│ │ ├── printerStopOn.pspimage
│ │ ├── Send2.ico
│ │ ├── Send8bit.ico
│ │ └── Send.ico
│ ├── PDFCreatorRestart
│ │ └── PDFCreatorRestart.ico
│ ├── Project16.psp
│ ├── Project32.psp
│ ├── Project48.psp
│ ├── Setup
│ │ ├── PDFCreatorAbout.bmp
│ │ ├── PDFCreatorBig.bmp
│ │ ├── PDFCreator.bmp
│ │ ├── PDFCreatorSetup.pspimage
│ │ ├── PDFCreatorSetup.svg
│ │ ├── PDFCreatorSetup.svgz
│ │ ├── PDFCreatorSmall.bmp.psp
│ │ ├── pdfforgeToolbarBig.bmp
│ │ ├── TransToolBig.bmp
│ │ └── TransTool.bmp
│ └── TransTool
│ ├── Toolbar
│ │ ├── Disc.ico
│ │ ├── GotoEmpty.ico
│ │ ├── GotoEmpty.psp
│ │ ├── Open.ico
│ │ ├── Open.psp
│ │ ├── Unmark.ico
│ │ └── Unmark.psp
│ ├── TransTool.gif
│ └── TransTool.ico
├── readme.txt
├── Scripts
│ ├── RunProgramAfterSaving
│ │ ├── AddWatermarkToPDF.vbs
│ │ ├── EncryptAES128.vbs
│ │ ├── FTPUpload.vbs
│ │ ├── Logger.vbs
│ │ ├── MSAgent.vbs
│ │ ├── NetSend.vbs
│ │ ├── PopUpMessage.vbs
│ │ ├── SayIt.vbs
│ │ ├── SendMail.vbs
│ │ ├── SignPDF.vbs
│ │ └── Watermark.pdf
│ └── RunProgramBeforeSaving
│ ├── AddBookmarks.vbs
│ └── PopUpMessage.vbs
├── TLBs
│ └── Edanmo
│ ├── Edanmo - olelib.tlb - readme.txt
│ └── olelib.tlb
└── Transtool
├── clsSystem.cls
├── clsTextLine.cls
├── english.ini
├── frmAbout.frm
├── frmAbout.frx
├── frmAboutPicLB.frm
├── frmAboutPicLT.frm
├── frmAboutPicRB.frm
├── frmAboutPicRT.frm
├── frmEdit.frm
├── frmMain.frm
├── frmMain.frx
├── frmSearch.frm
├── frmSearch.frx
├── modEllipsis.bas
├── modRecentfiles.bas
├── modTaskbar.bas
├── modTransTool.bas
├── TransTool.RES
└── TransTool.vbp
63 directories, 786 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论