0
votes
1answer
169 views

How to print a PDF file displayed in the WPF WebBrowser control

I have a WPF application that implements a simple web browser using the standard WebBrowser control. When the user navigates to a PDF document, the document gets displayed inline in the WebBrowser ...
0
votes
1answer
58 views

How to override print in Forms.WebBrowser

The WebBrowser class in System.Windows.Forms does not handle the DrawtoBitmap method correctly as stated on msdn. I wish to override the OnPrint method and perform my own drawing code. I have ...
0
votes
2answers
287 views

Microsoft Web Browser ActiveX control - printing to a specified (non default) printer

I'm using the MS Web Browser ActiveX control in a native C++/Win32/MFC dialog application to render some information via HTML. I'd like to print the contents without any user interaction to the ...
0
votes
1answer
110 views

Using WebBrowser to print documents in a listbox

Essentially, I'd like my program to load a list into a ListBox, and allow the user to click "Print", which navigates the WebBrowser to each page in the list, printing them all out individually. ...
0
votes
0answers
148 views

C# / WebBrowser Control: Selecting printer and Credential problems

I am currenly using the C# WebBrowser Control for printing http://msdn.microsoft.com/en-us/library/b0wes9a3.aspx Still i am having 2 problems: it prints automaticly what is nice but i want it to ...
0
votes
1answer
221 views

Print Web browser Control in WPF

In Application window there is scroll view ,on taking the print out of the window whole scroll view didn't come ,only the window size print is coming ,I can take the print of scroll view only but is ...
1
vote
0answers
444 views

Set page orientation when printing from the WebBrowser control in c#. (NON WPF Application)

Is it possible to change the orientation on the printer when using the webbrowser control? I need to change it to landscape. If I need to change the printer defaults for the printer itself that would ...
0
votes
0answers
449 views

Zebra TLP 2844 browser printing issue

There is a php server running under ubuntu, winxp server and a Zebra TLP 2844 connect to the client via usb. The driver is set to Generic/Text Only. The server output ELP2 commands to the clients ...
0
votes
1answer
32 views

Help me with this PHP app choice

I'm at the end of developing a kind of bar/restaurant management software (for personal use) written in PHP & javascript. It will operate on a local server which will be installed on the operating ...
0
votes
1answer
968 views

webbrowser control page setup options from code

I have a .net Forms Application with webbrowser control. I have a html file loaded in the control. I want to set Margins, Headers and Footers and orientation from the code itself for printing that ...
1
vote
1answer
795 views

Printing in landscape from a Windows Forms WebBrowser control

I have a WebBrowser control in a Windows Forms Host in a WPF application. I know that in order to print it's contents, I use simply WebBrowser.Print(), however, how can I tell the printer to print the ...
2
votes
1answer
976 views

Printing to a specific printer using the IE control without changing the default printer

Is there a way for me to pass a PrintDlg structure (or something similar) to my WebBrowser (Internet Explorer / IWebBrowser2) control such that it will print to the printer specified in the PrintDlg ...
1
vote
2answers
2k views

execCommand(“Print”, false, IDon'tUnderstandThisArgument)

What I'm trying to do is get this to print in landscape mode without showing the dialog box. This is what I have so far: ((mshtml.IHTMLDocument2)Browser.Document.DomDocument).execCommand("Print", ...
2
votes
1answer
1k views

Printing In Landscape mode from a WebBrowser control?

System.Windows.Forms.WebBrowser wb = new System.Windows.Forms.WebBrowser(); wb.DocumentStream = new FileStream("C:\a.html", FileMode.Open, FileAccess.Read); while (wb.ReadyState != ...
0
votes
1answer
716 views

Printing content of WebBrowser Control in C#

I want to print data present in Webbrowser Control. My data is loaded from datatable which contains HTML formatted text. When I tried to print it with RichTextBox it was not able to recognize HTML ...
2
votes
3answers
1k views

Programmatically changing the destination printer for a WinForms WebBrowser control

I'm trying to use an invisible WebBrowser control to print a very simple HTML document. Our application requires that we be able to print several documents this way, and that they all can be sent to ...
0
votes
3answers
801 views

How to make a product catalog in C#?

I need to develop a product catalog (about 4000 products) application, which would be given to clients on CD or DVD. The catalog exists in webpage format using PHP and MySQL. IMPORTANT: the ...
3
votes
1answer
2k views

c# webbrowser control printing

I'm using the web browser control in an application to display a report. The report is just straight HTML text but is fairly wide. When I preview the print using the .ShowPrintPreviewDialog() I see ...
2
votes
1answer
2k views

webbrowser printing

HiI am using C# WPF webbrowser control to show html file in my local machine, I added a print feature to my application by executing print command of webbrowser control, but default behavior of ...
1
vote
1answer
2k views

System.Windows.Forms.WebBrowser.Print() displays print dialog

From MSDN: This method prints the current document without requiring further user input. To display the Print dialog box prior to printing, use the ShowPrintDialog method. But when I ...
5
votes
4answers
8k views

How do I programatically change printer settings with the WebBrowser control?

I finally figured out how to print transformed XML without prompting the user or showing an IE window, but now I need to specify a number of copies and possibly other printer settings. Is there a ...
2
votes
2answers
6k views

WebBrowser Control - Console Application - Events Not Firing

I have been navigating the various WebBrowser control stackoverflow questions, and I can't seem to find an answer to a problem I am having. I am trying to use the WebBrowser control to print a web ...
0
votes
3answers
2k views

WebBrowser control: How to overwrite URL property

This is a bit special: I'm loading some HTML in string form into the WebBrowser control via the DocumentText property. Now when I print the page with a PDF printer (Bullzip PDF Printer in my case) it ...
0
votes
1answer
687 views

How to get dialog result from WebBrowser.ShowPageSetupDialog

I'm using a WebBrowser control in my Visual C# (.net 2.0) application. Now I'd like to add a print button which shows the page setup dialog and then directly prints when the user presses the OK button ...
2
votes
5answers
3k views

How to print css applied background images with WebBrowser control

I am using the webbrowser control in winforms and discovered now that background images which I apply with css are not included in the printouts. Is there a way to make the webbrowser print the ...