Converting .rpt to .pdf file
-
I would like to make a conversion of a crystal report file to pdf (adobe acrobat reader) file. How could I do it in C#? Hopefully, May Thu San
-
I would like to make a conversion of a crystal report file to pdf (adobe acrobat reader) file. How could I do it in C#? Hopefully, May Thu San
Easiest way - there are printer drivers that print to PDF. Then, you just print your report.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
I would like to make a conversion of a crystal report file to pdf (adobe acrobat reader) file. How could I do it in C#? Hopefully, May Thu San
use crviewer control export or expoertodisk...option... ReportDocument.ExportToDisk( ExportFormatType.PortableDocFormat, FileName);
Where there is a will,there is a way.