webbrowser-control

How to programmatically turn off quirks mode in IE8 WebBrowser control?

I want to use IE8 as a WebBrowser control in a C# application. How can I disable "quirks mode" and force IE into standards compliance (as far as it is implemented)? ...

Future of Internet Explorer

It's been rumored that IE8 will be Microsoft's final release of IE (When I asked this question, someone pointed me to an article on Slashdot -- Yes, I know, it's Slashdot, but it cited an article on InfoWorld -- in any case, there seems to be some legitimate concern regarding Microsoft's continued support for IE, at least in its present ...

Handling key events on WebBrowser control

I am using the WebBrowser control in a C# application and want to handle all key events while the WebBrowser has the focus, regardless what individual content element (input field, link, etc.) is focused. I tried to simply add an event handler to browser controls KeyDown event, but this does not work. I don't want to explicitly hook a ...

How to capture XMLHTTP requests in a Webbrowser Control?

BeforeNavigate2 event or any other similar event don't catch XMLHTTP requests in a WebBrowser Control. Is there anyway to solve this problem? This is a .NET project. Edit: I've found this C++ application which apparently can be used to solve this problem, but porting it to managed code doesn't look possible. Maybe I should change the...

Disable context menu in Internet Explorer control

How do I disable the context menu in the IE WebBrowser control and instead perform custom handling of the right-click event in C#? ...

How can I get source code of page thru WebBrowser-Control (ActiveX InternetExplorer)?

How can I get source code of page thru WebBrowser Control (ActiveX InternetExplorer)? I have an xml document "foo.xml". var Web: TWebBrowser; begin ... Web.Navigate("foo.xml"); // How can I get source code thru WebBrower control<---- ... end; ...

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 page. Following MSDN's example, I have created the following console application: namespace WebPrintingMadness { using System; using ...

Using C# to automate functions and movement between two different browser applications?

I'm a newb. So forgive me if I'm vague or not specific enough to be helpful, please let me know so I can clarify. I use 2 different applications for work and would be interested in a little tool to automate some of the functions. 1. IP Based phone system we use. We have to copy and paste numbers from one web browser (always locate...

Webbrowser Control stealing shortcuts

Webbrowser Control in my .NET Windows Form application is stealing shortcuts when on focused. To able to use Alt + F4 I had to click a control first. Currently "WebbrowserShortcuts = false" but it's still same. Is there a way to stop this irritating behaviour? ...

Using .Net Web Control - How to Set a Value in a TextBox *INSIDE* of an IFRAME.

I'm trying to use a .Net WebBrowser control to log into a website and aggregate some data for me. I'm also using a reference to MSHTML (but I don't care if your solution does or doesn't). When I visit a 'normal' website - I create an mshtml.HTMLDocument from the webBrowser's .documment. Then I create a mshtml.FormElement and a mshtml....

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 way to programatically change printer settings on a WebBrowser control? The code in question: private static void PrintReport(string report...

Differences setting content in Forms.WebBrowser control via DocumentText vs. Url

If I generate some HTML and have it in a string and then say: myWebBrowser.DocumentText = string; It seems to work just fine, except none of the images load (I get the broken image graphic). If, however, I write the string to a file and then say: myWebBrowser.Url = new Uri("file://myfile.html"); Everything works just fine. My q...

is there any way to block the possibility to resize the text in a webpage using ctrl + scroller of the mouse

i guess maybe using javascript im gonna do it.... but if anybody knows a better and faster way to do it .. easily im gonna appreciate any ideas... thanks!... this is to make impossible for a user to view badly the page increasing the text or doing something like a zoom in the browsers ... ive got some QA engineers asking me that .......

Save webpage using webbrowser control

Hi, I am using VB6 and the webbrowser control to navigate to to webpages. I want to save the pages I visit in regular intervals without any manual intervention. I know how to parse HTML using DOM. But also need to save the pages without dispaling any dialog box. Is this possible? Will appreciate some help. Thanks. Tawfiq. ...

C# accessing form control from custom function

How can I properly access the web browser control from within myFunct()? Main.myWebBrowserControl & Main::myWebBrowserControl don't work. namespace foo{ public partial class Main : Form{ public Main(){ InitializeComponent(); // Do some things... MyFunct(); } public static void MyFunct(){ myW...

Zoom in on a web page using WebBrowser .NET control

In IE7 there's a "zoom" feature built-in (show in the status bar), allowing you to zoom in up to 400%. I'm using the WebBrowser .NET control in a demo/simulation app, and need to zoom in on a web page. Is this at all possible? (I don't want to simply take a picture of the page and enlarge it, as I need to use the links and buttons on th...

How to show thumbnails of webpages in a WPF user control?

This WPF application/usercontrol needs to show a link of a webpage (say on a button), then on mouseover, show a thumbnail (150X150) of the real-time webpage like a tooltip? Here are some thing that come to mind. In the ToolTip.Content embed a tiny webbrowser control and have it load the link - Personally I don't like this idea of usin...

How might I insert some JavaScript into the document of a WebBrowser control?

I'm using the System.Windows.Forms.WebBrowser control in a .NET 2.0 application, and would like to insert a bit of JavaScript code into the loaded document right before the end of the body element. How might I go about accomplishing this? ...

Getting the page height from a WinForms WebBrowser control

I've been trying for the last few days to get the height of a web page from the Document property of a WebBrowser control. Here's my latest attempt. HtmlElementCollection children = webBrowser.Document.All; int maxOffset = 0; foreach (HtmlElement child in children) { int bottom = 0; bottom = child.OffsetRectangle.Bottom; ...

getting the scroll value from a WebBrowser Control C#

I am trying to get the Y scroll index for a web page in the WebBrowser control but I can't access the values for the built in Scroll bar. Any Ideas? ...