Top "Webbrowser-control" questions

This tag refers to the WebBrowser ActiveX Control (native) and for Windows Forms or WPF applications (.NET).

Replacing .NET WebBrowser control with a better browser, like Chrome?

Is there any relatively easy way to insert a modern browser into a .NET application? As far as I understand, …

c# .net winforms webbrowser-control
Disable Drag and Drop on HTML elements?

I'm working on a web application for which I'm attempting to implement a full featured windowing system. Right now it's …

javascript jquery css webbrowser-control
Load local HTML file in a C# WebBrowser

In my app I have a WebBrowser element. I would like to load a local file in it. I have …

c# webbrowser-control
How to inject Javascript in WebBrowser control?

I've tried this: string newScript = textBox1.Text; HtmlElement head = browserCtrl.Document.GetElementsByTagName("head")[0]; HtmlElement scriptEl = browserCtrl.Document.CreateElement("script"); lblStatus.…

c# javascript .net winforms webbrowser-control
Use latest version of Internet Explorer in the webbrowser control

The default version of the webbrowser control in a C# Windows Forms application is 7. I have changed to 9 by the …

c# webbrowser-control
Disable JavaScript error in WebBrowser control

I am developing a windows application with a WebBrowser control that navigates to a sharepoint site. My problem is that …

c# .net winforms webbrowser-control
Options for embedding Chromium instead of IE WebBrowser control with WPF/C#

Updated for 2020, I've linked my article where I compare the memory footprints of different approaches to hosting HTML WebView in …

c# wpf google-chrome webbrowser-control chromium-embedded
Difference between F5, Ctrl + F5 and click on refresh button?

I have often experienced while developing my web applications that pressing F5 or refresh doesn't produce or refresh the proper …

browser refresh webbrowser-control browser-refresh
Detect WebBrowser complete page loading

How can I detect when a System.Windows.Forms.WebBrowser control has completed loading? I tried to use the Navigate …

c# winforms webbrowser-control
How to wait until WebBrowser is completely loaded in VB.NET?

I am using the WebBrowser control in my VB.NET application to load a few URLs ( ~10-15) and save their …

vb.net webbrowser-control