Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VFP9 FRX TO PDF 1

Status
Not open for further replies.

foxup

Programmer
Dec 14, 2010
328
CA
Hi,

I'm looking for a free FRX TO PDF converter but CutePDF doesn't work well as it always asks the path & filename to save as is really a pain. I've seen others but the Acrobat PS Driver is non existant for win7 x64.

Any ideas please.

Thanks,
FOXUP
 
The Free one that I use is BullZip ( )

I pre-configure BullZip so that all PDF writes to go out to the same Directory & Filename. Allowing for 'blind' over-writes, etc.

Then after a PDF write within my VFP code I can 'know' where to find the output PDF file which I can then move to wherever I need and rename to its intended filename along the way
COPY FILE <orig> TO <new>

Good Luck,
JRB-Bldr
 
My problem seems to be that there is no Adobe Generic Postscript printer driver for WIN7 x64.

any other solutions.
bullzip needs to install dependencies. not really what Im looking for.

any help please.
 
I second Nigel's suggestion.

XFRX is not free, but it's not very expensive either. It's the most flexible tool of its kind I've come across, and only needs about three lines of code to ouptut a PDF to any filename and directory you choose.

Mike

__________________________________
Mike Lewis (Edinburgh, Scotland)

Visual FoxPro articles, tips, training, consultancy
 
Still pretty expensive. it's not for me.
 
bullzip needs to install dependencies

Yes, that is true, but it is FREE and it WORKS

And those dependencies which control the Default settings, can, as I said above, be have their final values easily changed dynamically by the VFP application after the PDF write has completed.
It has worked for one of my clients to send out 200+ PDF files each day as email attachments, all with unique filenames and locations.

If you want some more comprehensive PDF driver which will allow you to dynamically pass it filename parameters, etc., then expect to pull out the credit card.

If this is a Business Critical operation quit trying to 'low-ball' it, you get what you pay for.

Good Luck,
JRB-Bldr
 
Tamar,

You,re a star as usual . Thank u so much. A star for you. :)


Thank, foxup
 
Is there a way to use FoxyPreviewer within VFP8 ?
FoxyPreviewer looks greats, can traslate to pdf, xls, etc and is easy to use.
I have only VFP8 and need only reports FRX to Xls (no to-Pdf necesary)
 
According to the FoxyPreviewer docs, it requires VFP9 SP2.

I don't know why SP2 is necessary, but I would think it would definitely need VFP9, given that it presumably uses a report listener.

So I'm afraid you are out of luck, MarsNW. You might want to look at XFRX (see above), which is not free but not particularly expensive.

Mike



__________________________________
Mike Lewis (Edinburgh, Scotland)

Visual FoxPro articles, tips, training, consultancy
 
MarsNW,

Well to export data to xls, EXPORT Type XLS or COPY TO TYPE XLS surely are more natural ways. And if you need xlsx, there are adodb providers for creating excel sheets. Besides you can always make use of OLE automation.

If you want a report layout, I question usage of xls, excel is a spreadsheet application - the german term, retranslated, "table calculation" suggests even more, it's not meant for reporting, but for calculating with data in it's table cells.

If that is acutally the reason you want to export to xls, then ole automation is much better for that matter than using frxes.

With an frx as the basis of an xls, even if xfrx supports that, you will not have much control about which columns your frx detail band fields will go, also I doubt formulas for summation, etc, which you may use via report variables, are not automatically converted to cell formulas in the resulting excel spreadsheet, the conversion rather is visually than functionally.

OLE automation of excel will yield the better results here, you are in charge and control how the excel sheet is created including the visual layout and formulas in it.

And if you intend to use xls for data transfer, it's even more questionable to go through a report.

Bye, Olaf.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top