Search found 2 matches

by manas_p
Thu Aug 29, 2013 8:53 pm
Forum: Programming
Topic: Printing .htm files always displays the print dialog?
Replies: 0
Views: 21476

Re: Printing .htm files always displays the print dialog?

I was able to do it without using the PrintHtml.exe. Please see my other post. var pdfSettings = new PdfSettings(); pdfSettings.PrinterName = "Bullzip PDF Printer"; pdfSettings.SetValue("SavePath", "C:\\Users\\manas_p\\Documents\\"); pdfSettings.SetValue("Output", "C:\\Users\\c_manas_p\\Documents\\t...
by manas_p
Thu Aug 29, 2013 8:48 pm
Forum: Programming
Topic: Save HTML page to PDF
Replies: 0
Views: 135106

Save HTML page to PDF

Problem: WPF .Net Framework 3.5 Project using Visual Studio 2010 The Webpage was being displayed using a System.Windows.Forms.WebBrowser control Needed to Print the Webpage to Save as PDF file. Solution: // Help/ideas from bullzip forums were used to arrive at this solution. Thank you //I just got t...