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

Converting from PDF to PDF/A ( Error 26999)

$
0
0

@DezLezz wrote:

bla
( Error mensage roughly translates to: "An Error as occurred: Error processing the document. (26999)

Hi, when trying to convert my PDF files to PDF/A I keep getting this error message in the end of the convertion process and no mather how much research I do I can’t find anything about this error and how to solve it. Could anyone help me?

PDF creator version: 3.1.2

PS: if anyone could tell me, in a few words, the difference between PDF/A-1b and PDF/A-2b i would also be thankful

Posts: 1

Participants: 1

Read full topic


Zweite Seite vom Ausdruck gedreht und extrem klein

$
0
0

@Moegenburg wrote:

Hallo,

wir drucken aus SAP über den PDF Creator und erhalten dann die erste vollständig korrekt. Jedoch werden alle weiteren Seiten extrem Verkleiner und auf dem horizontal gespiegelt dargestellt. Dieses passiert bei der Version 2.x exbenso wie mit der aktuellen Version 3.
Es spielt auch keine Rolle, ob wir im SAP als GeräteTyp “PDF UniCode 1.3” oder “PDF Iso latin 4.6D” verwenden.

Mfg
Mögenburg

Posts: 1

Participants: 1

Read full topic

PDFCreator do not create searchable PDFS

$
0
0

@pocktanpd wrote:

I converted webpage to pdf file.
ex) URL : http://forums.pdfforge.org/
PDFCreator did not create searchable PDFS.
I attached the two files.
No.1) pdfforge forums (PDFCreator-3_1_2).pdf
No.2) pdfforge forums (Other PDF Program).pdf

No.2 file is searchable and linkable.

Can I create searchable and linkable PDFS with PDFCreator??
need other setting??


Posts: 2

Participants: 2

Read full topic

Unable to convert RTF file - Word 2007 hangs

$
0
0

@actraider wrote:

Hope you can help. I’m trying to convert an RTF file to PDF in PDFCreator v3.1.2 build 10844 on a Win 10 and it opens up Word and then hangs. It doesn’t open the document at all. I’ve associated the RTF file extension with Wordpad and can open it fine in File Explorer but it still tries to open it in Word. Also does the same for word documents.

Installed PDFCreator on a Win 7 machine with no Office installed and had same settings (auto save on) and it opens the RTF file in Wordpad and converts a treat.

Can anyone help me either get the rtf to open with Wordpad in PDFCreator or sort out why Word is hanging (I’d prefer to use Wordpad if possible)

Thanks

Posts: 1

Participants: 1

Read full topic

V.3-1-2 unable to move or close main window

$
0
0

@andygough wrote:

Just installed v.3.1.2 on Windows7. program works fine but window is stuck off screen in top left corner.
No close box is visible. Only able to close from task bar.
Reinstalled but same problem.

Posts: 1

Participants: 1

Read full topic

V 3.1.2 always sets "show quick actions" to ON at first start

$
0
0

@pdfjd wrote:

Hello, I’ve also experienced this issue on previous versions of V3, and on several Windows versions.

After deinstalling a previous PDFCreator version (keeping the programm settings) and then installing the actual version, at the first program start the setting for showing the quick actions is always set to “True” regardless of the previous value.
This happens for all users.

This means, the registry value:

[HKEY_CURRENT_USER\Software\pdfforge\PDFCreator\Settings\ConversionProfiles<ProfileNumber>]
“ShowQuickActions”

is not taken from the previous settings but is always set to “True” for all “ProfileNumber”.
This happens for all users at first program start by each user.

Since I am not using the quick actions, this means I have to edit all profiles for all users after each PDFCreator update.

Could you change this behaviour of the installer?

Posts: 2

Participants: 2

Read full topic

Autosave option

$
0
0

@fgilorr wrote:

I have installed the pdfcreator 3.4.1 free into server 2008 and I don’t look the option “autosave” by pdfcreator. This server have the printer pdf creator is shared.
I have a customer machine , when I send a page test, I don’t know that folder send the test file.

Thank’s

Posts: 1

Participants: 1

Read full topic

Merging Files only works every second time Excel VBA

$
0
0

@SteveBayliss wrote:

Hi,

I have some VBA code to merge pdf files into a single PDF.

I have the following code…

Option Explicit

Sub Test_PDFCreatorCombine2()
Dim fn(0 To 3) As String, s As String

fn(0) = ThisWorkbook.Path & "\P1.pdf"
fn(1) = ThisWorkbook.Path & "\P2.pdf"
fn(2) = ThisWorkbook.Path & "\P3.pdf"
fn(3) = ThisWorkbook.Path & "\P4.pdf"
s = ThisWorkbook.Path & “\PDFCreatorCombined.pdf”

PDFCreatorCombine fn(), s

If vbYes = MsgBox(“Open Merged Data File? " & vbCr & vbCr & _
s, vbYesNo + vbQuestion, “Open?”) Then Shell (“cmd /c " & “””” & s & “”"")
End Sub

’ Older version examples by Ken Puls,

’ Macro Purpose: Print to PDF file using PDFCreator v2.3.2, Kenneth Hobson, Oct. 8, 2016

’ Designed for early bind, set reference to: PDFCreator - Your OpenSource PDF Solution
’ sPDFName() assumed to be 0 index based string array.
Sub PDFCreatorCombine(sPDFName() As String, sMergedPDFname As String, _
Optional tfKillMergedFile As Boolean = True)
Dim oPDF As PdfCreatorObj
Dim q As Queue
Dim pj As PrintJob
Dim i As Integer, ii As Integer
Dim fso As Object, tf As Boolean
Dim s() As String

On Error GoTo EndSub
Set fso = CreateObject(“Scripting.FileSystemObject”)
If tfKillMergedFile And fso.FileExists(sMergedPDFname) Then Kill sMergedPDFname

For i = 0 To UBound(sPDFName)
If fso.FileExists(sPDFName(i)) Then
ii = ii + 1
ReDim Preserve s(1 To ii)
s(ii) = sPDFName(i)
End If
Next i

Set q = New Queue
With q
.Initialize

  Set oPDF = New PdfCreatorObj
  
  
  For i = 1 To UBound(s)
    oPDF.AddFileToQueue s(i)
  Next i

’ tf = .WaitForJobs(i, 5) 'Wait 5 seconds for jobs to queue

  .MergeAllJobs
   
  Set pj = q.NextJob
  With pj
    .SetProfileByGuid "DefaultGuid"
    .SetProfileSetting "Printing.PrinterName", "PDFCreator"
    .SetProfileSetting "Printing.SelectPrinter", "SelectedPrinter"
    .SetProfileSetting "OpenViewer", "false"
    .SetProfileSetting "OpenWithPdfArchitect", "false"
    .SetProfileSetting "ShowProgress", "false"
    .ConvertTo sMergedPDFname
  End With

End With
EndSub:
If Not q Is Nothing Then q.ReleaseCom
Set q = Nothing
Set pj = Nothing
Set oPDF = Nothing

End Sub

This works perfectly every second time I run it with every other time only result showing the combined PDF to only containing the contains of P1.pdf

However it appears that it is only when the same files are attempted to be merged for a second time that this occurs.

So I setup a second routine which merges P5,6,7,8 together. When I open the file I can

merge P1-4 perfect
merge p5-8 perfect
merge p1-4 - only P1 in merged doc
merge p5-8 only P5 in merged doc
merge p5-8 perfect
merge p5-8 only P5 in merged doc
merge P1-4 perfect

Closing and reopening excel at any time though the sequence will reset and work the first time the files are merged again.

Posts: 1

Participants: 1

Read full topic


PrinterName ignored in command line parameters

$
0
0

@mango2031 wrote:

I have used PDF creator successfully for the last 4 years to automatically email a PDF version of an excel spreadsheet each day. There was a recent Win 10 x64 update in the last few days which I think has affected the PrinterName parameter, as it is now ignored and always prints to the Win 10 default printer.
I use the Windows Scheduler to trigger the PDFCreator program and a command line to pass the parameters, PrintFile (containing the excel spreadsheet) and PrinterName (containing the PDFCreator printer which emails the excel PDF attachment via SMTP).
I have uninstalled and reinstalled the latest version of PDF creator V3.1.2 but still have the same problem. Any suggestions?

Posts: 1

Participants: 1

Read full topic

"Owner Password" function not working properly

$
0
0

@jackgm wrote:

Dear Pdfforge,
I recently upgraded to the latest free version of your Pdfcreator software I’ve been using for a long time.
I’ve noticed that in v. 3+ (I’ve tested also the latest 3.12), if I set an “owner password” to protect my PDFs from being modified (also set cryptography to 128bit and disable all actions except from “print”) but I do not set an “user password” to open the file, I am still able to copy-paste the contents of the file. I use SumatraPDF as viewer.
If I set both passwords, the protection works properly.
The feature worked properly in older versions of your software.
Running on Win10 (updated) 64bit.

Any suggestion? I’m stuck.

Sincerely,
GM

Posts: 3

Participants: 2

Read full topic

Is there an open source version for PDFCreator 3?

Exceedingly poor business practices

$
0
0

@MonkeyFarmer wrote:

I purchased an earlier version of PDF creator with most of the modules. I could not, after considerable effort, upgrade. So I purchased anew. I get billed for a component I did not order (OCR) module. I requested a refund and got no response. I will try again. I installed what I purchased, entered the key provided. Now If I open any PDF document it want’s me to activate. Before I can enter the key it goes to a screen wanting $49 USD to upgrade.

Now I not only did not get what I purchased, I can’t even open PDF’s.

This is one poor product.

So here is my question… HOW DO I GET WHAT I ORDERED ONLY and have it actually work?

Mike

Posts: 1

Participants: 1

Read full topic

PDF CREATOR lässt sich bei Windows 10 nicht installieren

$
0
0

@Michael100 wrote:

Grüß euch

Ich verwende seit vielen Jahren erfolgreich den PDF Creator. Doch seit 2 Wochen funktioniert er nicht mehr.

Ich habe einen modernen aktuellen Laptop, 64bit, Windows 10.

Trotz neuerlicher Installierungsversuchen scheitert es an der Neuinstallierung.

Folgende Fehlermeldung mitten in der Installation:

IPersistFile:: Save schlug fehl; Code 0x80070002

Wenn man dann OK klickt, wird fertig installiert.

Wenn man dann drucken möchte, konvertiert er auch - doch bei 100% kommt folgende Fehlermeldung:

Die Datei C:Users… konnte nicht gespeichert werden. Vielleicht wird sie gerade verwendet oder sie verfügen nicht über die benötigten Berechtigungen. Bitte wählen sie einen neuen Dateinamen aus und versuchen es nochmals.

Auch nach Änderung des Dateinamens und Änderung des Speicherortes funktioniert es nicht.

Auch wenn man jpg oder andere Formate auswählt, kommt es zu den selben Fehlermeldungen.

Was kann ich tun ? Hängt es mit den aktuellen Updates betreff Sicherheitslücken Intel Core zusammen ?

LG
Andreas

Posts: 1

Participants: 1

Read full topic

30 days test pdfcreator server

Profilmanager wird bei jemden Druckvorgang geöffnet

$
0
0

@edvilligst wrote:

Hallo Zusammen,

seit dem Update auf Version 3.12 öffnet sich auf einigen Clients bei jedem Druckvorgang zusätzlich der Profil Manager / das Hauptfenster, wie auch immer es bezeichnet wird.

Das Verhalten stört unsere User natürlich sehr. :grinning: Wie kann ich dem Client dieses Verhalten wieder abgewöhnen?
Neuinstallation inkl. säuberung der Registry hat bisher keine Abhilfe schaffen können.

Dieses Verhalten ist mit einer der Versionen 2.x schon einmal aufgetreten. Hier hat der oben beschriebene Weg funktioniert. Eines der Updates auf 2.x.y hat das Problem dann ansich behoben, so das keine Nacharbeiten mehr nötig waren.

Danke und Gruß
edvilligst

Posts: 1

Participants: 1

Read full topic


Text Box in Forms

Compatibilité Visual Basic

$
0
0

@justine1 wrote:

Bonjour,

Je viens de mettre à jour PDF Creator pour une version très récente.

Depuis la mise à jour, mes macros Visual Basic qui me permettent de générer des pdf automatiquement bugguent.

La macro est stoppée au code : Dim PDFCreator1 as PDFCreator.clsPDFCreator.

Pourriez vous me dépanner?

Merci par avance

Posts: 1

Participants: 1

Read full topic

Pdfforge-org Malware-Webseite?

$
0
0

@Gorwo wrote:

Wenn ich versuche pdf-creator zu installieren, bekomme ich folgende Warnung:
“pdfforge .org
Dies ist eine Malware-Webseite
Malware-Webseiten infizieren Ihr Gerät und können Viren, Würmer, Spyware und Trojaner enthalten.”

Enthält das Programm irgendwelche “Zusatzinhalte”, die ungewollt mitinstalliert werden?

Posts: 1

Participants: 1

Read full topic

Fehlermeldung > Interner Ghostscript Fehler (29100)

$
0
0

@zs57 wrote:

Hallo,

wenn ich ein Dokument aus einem Citrix Fenster auf dem PDF Creator drucken will erhalte ich einen Ghostscript Fehler, beim Druck vom PC habe ich keine Probleme??

Posts: 1

Participants: 1

Read full topic

Lizenz in PDF Architect ok aber online nicht aufgelistet unter "Meine Produkte"

$
0
0

@Tell wrote:

Guten Morgen,

ich habe das PDF Architect 5 - Professional Paket im Oktober 2017 gekauft.
Ausser OCR ist alles aktiviert und scheint in Ordnung zu sein, aber wenn ich
mich einlogge und unter myaccount.pdfarchitect nachschaue, ist das Produkt
nicht auffindbar.

Vielen Dank und beste Grüsse

T.

Posts: 1

Participants: 1

Read full topic

Viewing all 2620 articles
Browse latest View live


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