0
votes
1answer
13 views
C#: Accessing and Modifying Values in a WebBrowser Control
I have a WebBrowser control where I want to edit a field in the HTML and then submit a form. Let's say that the field is called txtUname and that the submit button is called submit …
0
votes
2answers
186 views
Implementing Drag and Drop Functionality WebBrowser Control Winforms C#
I need to capture drag and Drop Events of WebBrowser Control in WinForm C#. Is there any way ?
0
votes
0answers
19 views
WPF WebBrowser control doesn’t enter design mode when the document property is changed
Dear LazyWeb,
I have a frustrating problem. Here's a simplified version of what I'm doing:
A UserControl in c# contains a toolbar and an embedded WebBrowser object. The toolbar c …
0
votes
0answers
21 views
Tables created programmatically don’t appear in WebBrowser control
I'm creating HTML dynamically in a WebBrowser control. Most elements seems to appear correctly, with the exception of a table.
My code is:
var doc = webBrowser1.Document;
var bod …
2
votes
6answers
623 views
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") …
1
vote
2answers
455 views
Using jQuery in WinForms desktop app?
We have a WinForms desktop application that uses the .NET 2.0 framework WebBrowser control quite extensively for displaying HTML. The HTML may be simple, or quite complicated. It m …
3
votes
1answer
181 views
WebBrowser - Search using Search engine uri and Input Keyword?
How can use the WebBrowser control in WPF to navigate using Search engine uri and input key?
For Example if I have the following function
private void Search( Uri uri, string key …
0
votes
4answers
2k views
C#, Webbrowser control: How to delete Cookies from windows.form?
I am working with the Webbrowser control on a windows.form application written in C#. I would like to write a method for deleting the cookies from the Webbrowers control after it v …
0
votes
1answer
19 views
Incerease DPI resoultion for web page loaded into WebBrowser conriol in C#
Hi All,
We would like to display text and images of an web page in higher DPI for example take 300 DPI, but by default C# webbBrowser control uses 72/96 DPI which is currently sys …
0
votes
1answer
28 views
Displaying spinner waiting indicator while loading web page
Hi
I have a WPF application that is loading web pages.
Some of the web pages taking long time.
I want to display an indicator like spinner
I have the spinner already and using it …
0
votes
1answer
64 views
Remove Javascript/ChildElement from WebBrowser Control
I am using below code to inject javascript
HtmlElement head = _wb.Document.GetElementsByTagName("head")[0];
HtmlElement scriptEl = _wb.Document.CreateElement("script" …
1
vote
2answers
63 views
How to set and delete cookies from WebBrowser Control for arbitrary domains
How can I set and delete cookies for a domain in webbrowser control without using Javascript (which doesn't allow to set / delete cookies without navigating to the website first.)
0
votes
3answers
27 views
How to programatically click or invoke a javascript method using System.Windows.Forms.WebBrowser?
I tried with no success:
webBrowser1.Document.ExecCommand("alert('Hello World!')", true, null);
also tried:
private void webBrowser1_DocumentCompleted(object sender
, WebBr …
2
votes
11answers
5k views
How do I get a C# WebBrowser control to show jpeg files (raw)?
Hi. Does anyone know in .Net 2.0 - .Net 3.5 how to load a jpeg into a System.Windows.Forms.WebControl as a byte-array and with the right mimetypes set so it will show?
Something l …
0
votes
4answers
74 views
How to load two websites in one page?
I don't want to use frame or iframe because most websites are busting it nowdays.
what are the possible methods to do this?
The intended behaviour is as if like two browser cont …
