Hello,
I am looking at a better way to create PDF documents from my application. I am using a third party tool to create the PDF via WaitRun/Command line method. This process seems to take longer depending on the size of the input file I create.
Can we create PDFs directly from from FWH 0811 that allows me to draw lines and include images?
Thank you,
PDF Creator
Re: PDF Creator
Hello,
have a look at FASTREPORT.
http://forums.fivetechsupport.com/viewt ... nt#p100487
Best regards,
Otto
have a look at FASTREPORT.
http://forums.fivetechsupport.com/viewt ... nt#p100487
Code: Select all
//here you can use export
oFr:SetProperty("PDFExport", "FileName", ".\Myfile.pdf")
oFr:SetProperty("PDFExport", "UserPassword", "PW…" )
oFr:SetProperty("PDFExport", "OwnerPassword", "PW…" )
oFr:SetProperty("PDFExport", "OpenAfterExport", .f.)
oFr:SetProperty("PDFExport", "UserPassword", "test")
oFr:SetProperty("PDFExport", "ShowDialog",.f.)
oFr:PrepareReport()
oFr:DoExport("PDFExport")
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
- Rick Lipkin
- Posts: 2397
- Joined: Fri Oct 07, 2005 1:50 pm
- Location: Columbia, South Carolina USA
- cdmmaui
- Posts: 653
- Joined: Fri Oct 28, 2005 9:53 am
- Location: The Woodlands - Dallas - Scottsdale - London
- Contact:
Re: PDF Creator
Thanks Otto and Rick.
I need to upgrade FWH, however I need to create PDFs without preview interface as PDF need to be created automatically via an automated process.
Thanks Again!
I need to upgrade FWH, however I need to create PDFs without preview interface as PDF need to be created automatically via an automated process.
Thanks Again!
Re: PDF Creator
Hello Darrell,
>however I need to create PDFs without preview interface as PDF
This is what the code I posted for you does.
Regards,
Otto
>however I need to create PDFs without preview interface as PDF
This is what the code I posted for you does.
Regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
Re: PDF Creator
We use image2pdf dll pdf creator
Excellent and fast and low cost
http://www.utilitywarrior.com/Image-to- ... ibrary.htm
Excellent and fast and low cost
http://www.utilitywarrior.com/Image-to- ... ibrary.htm
Peter