tags:

views:

146

answers:

1

Does anyone know of a way using C# to convert a XFDL file to a PDF file that is viewable in a standard PDF viewer (Adobe Reader and the like)? Thanks.

+1  A: 

One way I've seen generating PDF files done is to, within your C# program, temporarily change the printer to a PDF printer (e.g. Ghostscript), then print the document out using the default settings, then change the printer back to what it was before. This approach assumes you have the ability to print out an XFDL file.

Brian