Quantcast
Channel: PDFCreator - pdfforge forums
Viewing all 2622 articles
Browse latest View live

Outil utilisant Pdfcreator < 2.0

$
0
0

@marpon wrote:

Cet outil utilise PdfCreator version avant 2.0 pas après parceque les interfaces COM sont totalement modifiées.

2 versions existent :slight_smile:
TousEnPdf_portable, version en Français,
AllToPdf_portable en Anglais

Aucune installation de l’outil

Vous trouverez les 2 versions ici https://github.com/marpon/AllToPdf

Vous pourrez y trouver également une version de PdfCreator setup totalement compatible et adaptée pour ne plus demander de mise à jour , comme cela plus de risque de passer aux versions 2.0 ou ultérieures ce qui entrainerait une réductions des fonctions supportant uniquement des fichiers Texte, Image, Pdf…

J’utilise cet outil depuis plus de 4 ans maintenant de winXp à win10 sans aucun problème, je n’ai jamais ressenti le besoin d’une version ultériere à celle que j’utilise.

n"hesitatez pas à me contacter à marpon@aliceadsl.fr

Posts: 1

Participants: 1

Read full topic


Versions PDF creator supportées par Windows server 2012

$
0
0

@Stephane_GIRARD wrote:

Bonjour,
J’aimerais savoir quelles sont les versions PDF creator compatible avec Windows server 2012,n’ayant pas trouvé de réponse sur le forum français, anglais ni sur la documentation en ligne.

Cordialement.
Stéphane

Posts: 2

Participants: 2

Read full topic

PDF CREATOR FIND email address

Die Vereinigung mehrerer pdf-Dateien

$
0
0

@Andrej3 wrote:

Hallo zusammen.

Ich suche ein Verfahren, das die Vereinigung der einzelnen pdf-Dateien in die zusammengeschloße pdf-Datei ermöglicht.
Im Netz fand ich eine Lösung mit Hilfe von VBA-Macro für Excel.
Das Macro sieht folgerndermaßen aus:

Sub test()

Dim pdf As Object
Dim pdfFiles(1) As Variant
Set pdf =CreateObject(“pdfforge.pdf.pdf”)
pdfFiles(0)= "C:\temp\test1.pdf"
pdfFiles(1)= "C:\temp\test2.pdf"
pdf.MergePDFFiles_2(pdfFiles), “C:\temp\merge.pdf”, True
pdf.MergePDFFiles_2(pdfFiles), “C:\temp\merge.pdf”, True
Set pdf =Nothing

End Sub

Das funktioniert bei mir perfekt. Leider ist es nicht besonders bequem, wenn es um die Vereinigung der 3 oder mehr pdf-Dateien geht. In disem Fall muss man alle Dateien konsequent verarbeiten (wenn z.B. 3 Dateien vereinigt werden, muss man zuerst die Dateien 1 und 2 ausführen und dann die resultierende Datei mit Datei 3 usw.).

Meine Frage: ermöglichen GUI oder Kommandozeile von PDFCreator die Vereinigung mehrerer pdf-Dateien? Wie kann man das tun?

Wenn die Vereinigung mehrerer pdf-Dateien mit GUI oder Kommandozeile standardmässig nicht möglich ist, wie muss das Macro für 3 pdf-Datein (im allgemeinen Fall für n pdf-Dateien: 1.pdf, 2.pdf, 3.pdf, …, n.pdf) korrigieren?

Oder vielleicht gibt es andrere bequeme Variante?

Im voraus vielen Dank.

MfG, Andrej

Posts: 1

Participants: 1

Read full topic

How to export eml to pdf

$
0
0

@Scarlett_Jones wrote:

To get best way to export EML to PDF using Mailsware EML to PDF Converter utility. The software has many advanced features for the users that easily perform the conversion. In this tool, you can convert multiple EML files with attachments to PDF at one time. The tool provide facility to choose destination location to store resultant PDF file.

Functions of EML to PDF Converter

  • Save EML file to PDF in bulk

  • Convert limitless EML files into PDF without any limit

  • Multiple file naming option to export EML to PDF

  • Supports all type of EML supportive platform

  • Complete conversion without showing error

Posts: 1

Participants: 1

Read full topic

PDFCreator 3.2.0 : can't succeeded to have help files in french or spanish

$
0
0

@jeromeF wrote:

Hello,

I’m using a inf file to install Pdfcreator :

[Setup]
Lang=english
Dir=C:\Program Files\PDFCreator
Group=PDFCreator
NoIcons=0
SetupType=custom
Components=program,ghostscript,comsamples,helpfiles,helpfiles\spanish,helpfiles\french
Tasks=
Printername=PDFCreator

The helpfile don’t seems to be install. I can only see PDFCreator_english.chm and PDFCreator_german.chm in the install directory.

Can you help me ?

Thanks

Posts: 1

Participants: 1

Read full topic

Desactivate welcome screen at first launch

$
0
0

@jeromeF wrote:

Hello,

There is a way to desactivate this screen at first launch (via regedit or an ini file for example) ?
I don’t want that my users see this popup.

Thanks !
image

Posts: 1

Participants: 1

Read full topic

Print a Internet Explorer in PDF using VBA

$
0
0

@Leandro_Rezende wrote:

Hi, I am trying print a Internet Explorer page in PDF using VBA code, but I am having problem with “ActiveDocument.PrintOut”. I tried “ExecWB” and used some part from example code of the own PDFcreator, but in this point I have error. I would like that PDfcreator print automatically to a path, without open the dialog box of PDFcreator.
Follow I have my Code:
Sub ImprimirInternetComPDFCreator()

Dim Explorer As Object
Dim fullPath
Dim PDFCreatorQueue As Variant
Dim printJob As Variant

Set PDFCreatorQueue = CreateObject(“PDFCreator.JobQueue”)
fullPath = “linktogoogle”

'Connect to Internet Explorer
Set Explorer = CreateObject(“InternetExplorer.Application”)
'Open some document. This is usually a file on your computer, but I use Google here for test purposes
Explorer.Navigate "googlelinkforexample"
Explorer.Visible = True

'Set printer if necessary
SetDefaultPrinter (“PDFCreator”)

TryAgain:
'Wait for 2 seconds to let IE load the document
fTime = Timer
Do While fTime > Timer - 2
DoEvents
Loop
eQuery = Explorer.QueryStatusWB(6) 'get print command status
If eQuery And 2 Then

ActiveDocument.PrintOut

        'Wait for 2 seconds while IE prints
        fTime = Timer
        Do While fTime > Timer - 2
            DoEvents
        Loop
    Else
        GoTo TryAgain
    End If

MsgBox "Waiting for the job to arrive at the queue…"
If Not PDFCreatorQueue.WaitForJob(100) Then
MsgBox "The print job did not reach the queue within " & " 10 seconds"
Else
Set printJob = PDFCreatorQueue.NextJob

printJob.SetProfileByGuid ("DefaultGuid")

MsgBox "Converting under ""DefaultGuid"" conversion profile"
printJob.ConvertTo (fullPath)

If (Not printJob.IsFinished Or Not printJob.IsSuccessful) Then
    MsgBox "Could not convert the file: " & fullPath
Else
    MsgBox "Job finished successfully"
End If

End If

MsgBox "Releasing the object"
PDFCreatorQueue.ReleaseCom
End Sub

Somebody could help me?

Posts: 1

Participants: 1

Read full topic


Edit Profile to Change Resolution

$
0
0

@johnbil wrote:

I just downloaded v3.2.0 I know that I’m probably just missing it, but I can’t seem to find how to do this.

I’m looking to edit a Profile and change the resolution of it’s end product. How would I do this?

Posts: 1

Participants: 1

Read full topic

Optimium Profile Settings for Scanned Documents

$
0
0

@johnbil wrote:

Forgive the newbie questions, but I’m looking for some advice on creating a custom profile.

I normally scan documents to JPG’s of 600 DPI resolution. I am looking to create PDF files that have the same resolution/quality. In line with that, I have two questions about the ‘Output Format’ settings:

  • What ‘Image Compression’ do I use?
  • Should I check ‘Resample Images’? 600 DPI?

Regards…John

Posts: 1

Participants: 1

Read full topic

Software RIP muss Farbinformation in PDF erkennen/lesen können

$
0
0

@cnuet wrote:

Hallo,

ich setze einen Drucker der Fa. ROLAND und deren Software RIP “VersaWorks Dual” ein. Der RIP muss die Farbinformationen/-ebenen erkennen oder lesen können damit man evtl. Farbwerte korrigieren kann.

Erstelle ich das PDF (aus einer PS-Datei) mit Acrobat Distiller und setze den Distiller Parameter „/ColorConversionStrategy /LeaveColorUnchanged“ kann die Farbinformation gelesen werden. Mit PDFCreator erstellt können die Farbinfos nicht erkannt werden.

Kann ich das mit PDFCreator hinbekommen? Besondere Settings?

Gruß
cnuet

Posts: 2

Participants: 2

Read full topic

PDFCreator 2.3 Terminalserver gesucht

$
0
0

@Mietzekotze wrote:

Hallo,
wir haben noch eine Anwendung im Einsatz, die den PDFCreator in der Version 2.3 Terminalserver benötigt. Neuere Versionen funktionieren leider nicht. Im Downloadbereich findet sich nur Versionen bis runter zur 2.5.
Gibt es eine Möglichkeit noch an die alte Version dran zu kommen?

Danke

Gruß
Michael

Posts: 2

Participants: 2

Read full topic

PDFCreator 3.2.0 Includes Malware

$
0
0

@estreater wrote:

I have been a user of PDFCreator from version 1.7.0 to version 2.1.2. I wanted to upgrade to the latest version so I just downloaded and installed PDFCreator 3.2.0 from the pdfforge site. Sadly, it looks to have malware wrapped in the installation. My AMP software reported it as containing Trojan style malware “PUA.Win.Trojan.Webcompanion.75.svx.vioc” in the file name lsop.exe and was not able to clean the infection. I basically had to restore my machine from a previous snapshot. So it looks like I’m staying at version 2.1.2 until the developers can correct this. Has anyone else encountered this issue?

Posts: 1

Participants: 1

Read full topic

Printing from Putty?

$
0
0

@trelon wrote:

I got 29100 - Internal GhostScript Error while trying to print from Putty. Log:

2018-04-24 08:59:46.7434 [Error] pdfforge.PDFCreator.UI.Presentation.Assistants.Update.UpdateAssistant.UpdateThread: Exception in UpdateProcedure:
Version string portion was too short or too long.
2018-04-24 09:01:07.9346 [Error] pdfforge.PDFCreator.UI.Presentation.Assistants.Update.UpdateAssistant.UpdateThread: Exception in UpdateProcedure:
Version string portion was too short or too long.
2018-04-24 09:01:14.9488 [Error] pdfforge.PDFCreator.Conversion.Ghostscript.Conversion.GhostscriptConverter.DoConversion: Ghostscript execution failed: Error: /undefined in Ee&l0o8De&k2Ge
Operand stack:

Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2015 1 3 %oparray_pop 2014 1 3 %oparray_pop 1998 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval–
Dictionary stack:
–dict:1010/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)–
Current allocation mode is local
Current file position is 15

2018-04-24 09:01:14.9488 [Error] pdfforge.PDFCreator.Conversion.Ghostscript.Conversion.GhostscriptConverter.DoConversion: There was a Ghostscript error while converting the Job C:\Users\user\AppData\Local\Temp\PDFCreator\Spool\2-43BA1E63A998437DBD686BF93A20A59D.inf: pdfforge.PDFCreator.Conversion.Jobs.ProcessingException: Ghostscript execution failed: Error: /undefined in Ee&l0o8De&k2Ge
Operand stack:

Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2015 1 3 %oparray_pop 2014 1 3 %oparray_pop 1998 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval–
Dictionary stack:
–dict:1010/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)–
Current allocation mode is local
Current file position is 15

at pdfforge.PDFCreator.Conversion.Ghostscript.Conversion.GhostscriptConverter.DoConversion(Job job)
2018-04-24 09:01:14.9588 [Error] pdfforge.PDFCreator.Core.Workflow.JobRunner.RunJob: The job failed: Ghostscript execution failed: Error: /undefined in Ee&l0o8De&k2Ge
Operand stack:

Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2015 1 3 %oparray_pop 2014 1 3 %oparray_pop 1998 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval–
Dictionary stack:
–dict:1010/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)–
Current allocation mode is local
Current file position is 15

(Conversion_GhostscriptError)
2018-04-24 09:01:15.0688 [Error] pdfforge.PDFCreator.Core.Workflow.ConversionWorkflow.RunWorkflow: Error Conversion_GhostscriptError: Ghostscript execution failed: Error: /undefined in Ee&l0o8De&k2Ge
Operand stack:

Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2015 1 3 %oparray_pop 2014 1 3 %oparray_pop 1998 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval–
Dictionary stack:
–dict:1010/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)–
Current allocation mode is local
Current file position is 15

2018-04-24 09:01:22.7468 [Error] pdfforge.PDFCreator.Core.Workflow.JobInfoQueueManager.ProcessJob: The job ‘PuTTY remote printer output’ terminated at step Error and did not end successfully.
2018-04-24 09:01:36.2418 [Error] pdfforge.PDFCreator.UI.Presentation.Assistants.Update.UpdateAssistant.UpdateThread: Exception in UpdateProcedure:
Version string portion was too short or too long.
2018-04-24 09:01:44.2262 [Error] pdfforge.PDFCreator.Conversion.Ghostscript.Conversion.GhostscriptConverter.DoConversion: Ghostscript execution failed: Error: /undefined in Ee&l0o8De&k2Ge
Operand stack:

Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2015 1 3 %oparray_pop 2014 1 3 %oparray_pop 1998 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval–
Dictionary stack:
–dict:1010/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)–
Current allocation mode is local
Current file position is 15

2018-04-24 09:01:44.2262 [Error] pdfforge.PDFCreator.Conversion.Ghostscript.Conversion.GhostscriptConverter.DoConversion: There was a Ghostscript error while converting the Job C:\Users\user\AppData\Local\Temp\PDFCreator\Spool\3-B808E8C68A1F4A3583C190AA4A9769A9.inf: pdfforge.PDFCreator.Conversion.Jobs.ProcessingException: Ghostscript execution failed: Error: /undefined in Ee&l0o8De&k2Ge
Operand stack:

Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2015 1 3 %oparray_pop 2014 1 3 %oparray_pop 1998 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval–
Dictionary stack:
–dict:1010/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)–
Current allocation mode is local
Current file position is 15

at pdfforge.PDFCreator.Conversion.Ghostscript.Conversion.GhostscriptConverter.DoConversion(Job job)
2018-04-24 09:01:44.2262 [Error] pdfforge.PDFCreator.Core.Workflow.JobRunner.RunJob: The job failed: Ghostscript execution failed: Error: /undefined in Ee&l0o8De&k2Ge
Operand stack:

Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2015 1 3 %oparray_pop 2014 1 3 %oparray_pop 1998 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval–
Dictionary stack:
–dict:1010/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)–
Current allocation mode is local
Current file position is 15

(Conversion_GhostscriptError)
2018-04-24 09:01:44.2772 [Error] pdfforge.PDFCreator.Core.Workflow.ConversionWorkflow.RunWorkflow: Error Conversion_GhostscriptError: Ghostscript execution failed: Error: /undefined in Ee&l0o8De&k2Ge
Operand stack:

Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 2015 1 3 %oparray_pop 2014 1 3 %oparray_pop 1998 1 3 %oparray_pop 1884 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval–
Dictionary stack:
–dict:1010/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)–
Current allocation mode is local
Current file position is 15

2018-04-24 09:01:51.0492 [Error] pdfforge.PDFCreator.Core.Workflow.JobInfoQueueManager.ProcessJob: The job ‘PuTTY remote printer output’ terminated at step Error and did not end successfully.

Is there any way to fix this?

Posts: 1

Participants: 1

Read full topic

PDF Email-direkt-Versandt

$
0
0

@Raptor_Roger wrote:

Hallo,

Ich komme von FreePDF. Bin mit diesem nicht mehr zufrieden, deshalb versuche ich nun einmal mein Glück mit PDFCreator.

Nun habe ich folgendes Problem:

Ich gebe einen Druckjob auf dem PDFCreator aus.
Das Menüfenster von PDFC öffnet sich.
Hier wähle ich “E-Mail” (siehe Bild)

2018-04-24 09_40_23-Dokument1 - Word

Danach endet mein Vorhaben zu 80% im “Nichts”.
in unregelmäßigen Abständen funktioniert ein Versuch mal und es öffnet sich eine neue Mail incl. Anhang.

Reg Einträge zum Standard-Mail-Client habe ich bereits gecheckt.
(Ich benutze Lotus Notes als Mail-Client.)

Ich weis noch vom FreePDF das dieser Probleme mit fpmailer.exe und Notes hatte.
Hier musste man auf den mapimail.exe umstellen.

Gibt es so etwas auch bei PDFC oder gibt es andere Lösungen/Tipps die mir helfen.

Vielen Dank.

Posts: 1

Participants: 1

Read full topic


PDF creator 1.2 automation

$
0
0

@Shashank_suri wrote:

We use the PDF creator 1.2 and its awesome. However since we have 100s of documents inside a folder to convert from excel to PDF and then merge the PDFs.we do it for all the 100 folders.Is there a way I can automate this task and save on man time.kindly help. we need you assistance.waiting for your reply.

Posts: 2

Participants: 2

Read full topic

No conversion to pdf

$
0
0

@Aleksandr wrote:

Hello.
The program PDFCreator v3.2 ceased to work. No conversion, the window does not appear with saving in pdf format. In another computer account, the program works fine. I deleted, cleaned the registry manually and installed it again, but the program does not work again. What can I do to restore the program?
Sincerely, Alexander.

Posts: 2

Participants: 2

Read full topic

3.2.0 Drag and drop working?

$
0
0

@jeromeF wrote:

Hello,

Is drag and drop working for you ?
I can’t drop a file in the dedicated area and when I click on the button to select a file, I can only select one file.
I want to merge various file and I can’t …

Thank you for your help.

Posts: 1

Participants: 1

Read full topic

PDF creator and turn off PC WIN 10

$
0
0

@micha.nagy.5 wrote:

Hello,
when I install PDF creator 3.2.0 my computer (WIN10) start turn off after a few minutes work. When I uninstall PDF creator, computer and WIN 10 works without problems. Do you have similar experiences with this issue?
Thank you

Posts: 1

Participants: 1

Read full topic

Drucker & Profile für alle User auf einem Terminal Server

$
0
0

@marc.kuhn wrote:

Hallo zusammen
ich bin daran, mit dem aktuellsten PDFCreator Terminalserver 2 spezifische Printer zu konfigurieren mit speziellen Anforderungen. Nun möchte ich dies nicht für alle User machen müssen und es sollte auch über 3 TS möglich sein, diese zu nutzen. Gibt es dazu ein ADMX oder wie gehe ich am Besten vor, um dies zu bewerkstelligen?

Danke für eure Hilfe
Gruss Marc

Posts: 1

Participants: 1

Read full topic

Viewing all 2622 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>