Tagged Questions
0
votes
1answer
66 views
Accordion menu in windows phone 8 by using webbrowser control
I am using the following HTML page to make an accordion control:
<!DOCTYPE >
<html >
<head >
<title></title>
<script language="JavaScript" ...
1
vote
3answers
79 views
Browser control NavigateToString display HTML code instead of rendering page
I am developing a browser app using Windows Phone 8 browser control.
The app download an external webpage using WebClient into a string in the background. Then the browser navigate to the content ...
0
votes
1answer
19 views
Why the OuterHTML feature leads to an Error
I have been trying to change the HTML code of a select tag in an HTML code but whenever I do that the
"Object reference not set to an instance of an object"
error occurs.This is the C# code:
...
0
votes
0answers
41 views
How to get rendered html text size in webbrowser control
I'm desperately looking for a solution to this problem. I have html markup that I need to render in WebBrowser control. Before this, I must do some calculation/preparation and I need to get width and ...
0
votes
1answer
116 views
VB.Net - select a class using GetElementByClass and then click the item programmatically
Now before posting this question i did read...
How to select a class by GetElementByClass and click on it programmically
But this doesn't work for me. Apparently I'm an idiot and don't know how to ...
-1
votes
2answers
86 views
how to fill textarea in vb6
I am trying to fill a textarea in a web page.
First I call
site.navigate "www.mysite.com"
And here is my code for changing contents of textarea:
Private Sub Command1_Click()
...
2
votes
1answer
124 views
How to save the value of a textbox defined in HTML file to a text file using Tagname
I want to save the value of a textarea shown in webbrowser in a txt file
and I want to do this by GetelementbyTagName NOT GetelementbyID
Thanks
0
votes
2answers
152 views
Navitating in WebBrowser / Windows Phone 7. Wrong redirecting
I have Windows Phone 7 project. I put into project content new folder "help" and few html files like "index.html" etc.
help/index.html
help/index2.html
I can go to my index.html page with
...
0
votes
0answers
89 views
Detect if HTML page/javascript is loaded inside TWebbrowser/TEmbeddedWB
I have developed a sort of framework (without interface) in Delphi like phonegap but for Windows apps. The HTML-apps can run inside this, on the web and on several other platforms.
For some existing ...
0
votes
1answer
98 views
ListBox with html element
Can anyone offer me some advice? I currently have a listbox I am using, in the listbox there is a list of images from any website. they are grabbed from the website via this method
Private Sub ...
0
votes
1answer
126 views
White space padding in WebBrowser control
I'm trying to display image in WebBrowser control with this code:
string captcha = "<img src=\"http://www.reddit.com/captcha/{0}/.png\" border=\"0\"></img>";
webBrowser1.DocumentText = ...
0
votes
1answer
125 views
WebBrowser Control .Document/.DocumentText timing out?
I need access to the HTML source from a website for a program that I am writing using a web browser control. The program itself will be manipulating things based on the HTML but I'm having a problem.
...
0
votes
0answers
139 views
Showing MathML equation in WebBrowser component
I need a way to show MathML expressions in WebBrowser control. I have already tried standard web browser control and Gecko web browser control. It shows expressions, but not correctly. It is problem.
...
2
votes
1answer
163 views
WebBrowser OnPropertyChange event is not firing
I have a webpage, and an input button on it. Clicking on this button, in a specific div are loaded some data. My problem is that I can't catch this data.
The following code is my attempt to solve ...
1
vote
1answer
141 views
How to get the hyperlink in a webpage written in JavaScript using a WebBrowser
webBrowser1.Navigate(myurl);
HtmlElementCollection links = webBrowser1.Document.GetElementsByTagName("HTML");
foreach (HtmlElement link in links)
{
MessageBox.Show(link.InnerHtml);
}
I ...
0
votes
1answer
271 views
Windows Phone WebBrowser Control
Is it possible to reference a local file from WebBrowser control?
I have an image under Assets/Images folder of my project hierarchy. And i load the following html snippet.
<html><body>
...
0
votes
0answers
109 views
Databind CSS to Windows Phone WebBrowser object
Navigating to an HTML page with CSS is fine if the content is static but if we want to control the appearance of the content based on controls outside the WebBrowser, we would need some sort of ...
0
votes
0answers
116 views
Resolve relative urls in Webbrowser Control loading local pages
Is it possible to resolve relative urls of a local web page in a Webbrowser control?
If I change the url to "./data/sunset.jpg" from "/data/sunset.jpg" in the source code, it worked. However, for my ...
2
votes
2answers
204 views
Object reference not set to an instance of an object - vb.net
I'm trying to get the InnerHtml of a child of a child of an element. Here is what I have:
If ...
0
votes
0answers
93 views
WebBrowser control screws up HTML
I know several posts have talked around this but I want to know if anyone out there has gotten an XP version of the .net WebBrowser control to NOT screw up the HTML of the document. I am using the ...
1
vote
2answers
341 views
Unchecking an HTML checkbox using code
I am making a bot which has a WebBrowser control which loads some pages. There is a checkbox that I want to be unchecked by my bot. Right now I am using this code:
HtmlElementCollection elc = ...
1
vote
3answers
70 views
Completely linkable li element
I need to make linkable an entire <li> or <tr> element, someone suggest me to use javascript, with an onclick action.
function doNav(url)
{
document.location.href = url;
...
1
vote
1answer
283 views
How do I call the click function of an HTML button using the class name of the control or its value but not the ID?
I'm creating a WPF application that opens a WebBrowser instance and get the HTML code ...
I was calling the elements by ID for example:
if the HTML is:
<input type="text" name="company" ...
0
votes
0answers
247 views
SWF embeded in webbrowser control
I'm working on a c# winform which has a webbrowser. A swf file is embeded in an html file which is supposed to be loaded by the webbrowser. The problem is that: When I launch the application as ...
2
votes
2answers
129 views
How do I reload an <img/>?
I have a WebBrowser control on an WPF page. The HTML page loaded into the WebBrowser control displays images for the WPF application. I have a JavaScript callback from the WPF page into the HTML ...
0
votes
2answers
330 views
Editing inner HTML of an element not working
My goal is to add some specific HTML inside a table body.
Code notes:
tbody points to the body
"Hello \n" is very simple word for example I want to add
I've the HTML stored in another variable
...
0
votes
0answers
251 views
Save WebBrowser Control Content to HTML except some part
I have a webbroswer control and I want to save content to my local HTMLPage. I have found this code:
File.WriteAllText(path, browser.Document.Body.Parent.OuterHtml, ...
0
votes
1answer
136 views
Call winform function from html page?
I have a winform application that contains a c# webbrowser control.Webbrower control load a html page. On that html page I have a button. What I want is when click that button, it will call a winform ...
1
vote
1answer
1k views
C# check/uncheck checkbox in WebBrowser control?
This is my code:
webBrowser1.Document.GetElementById("user").SetAttribute("value", txtUsername.Text);
webBrowser1.Document.GetElementById("pass").SetAttribute("value", txtPassword.Text);
...
0
votes
1answer
509 views
How to open .eml files in the WebBrowser control?
I'd like to ask here, how can I open a .eml file, located in the file system, in a WebBrowser control. Here's what I've at this moment:
string uri = Convert.ToString(myDataReader["Uri"]); //obtained ...
0
votes
0answers
668 views
How to select an item from a webbrowser dropdown list?
I'm working on a webpage automation project. I want to use WebBrowser control to select an item in the dropdown list.
Now, how do I programmatically select an item from the HTML snippet below?
I ...
0
votes
1answer
569 views
WPF System.Windows.Controls.WebBrowser not rendering link buttons
I have a web page that I display in a WPF WebBrowser control within a desktop application. I just updated the webpage to use styled buttons instead of the default gray buttons by changing from an ...
0
votes
0answers
89 views
Hosting a WebBrowser control in aWeb Page
i am following the below mentioned tutorials to create a custom Windows forms control library. I am able to host the control in a html page and test it for the given label.text change examples.
...
1
vote
1answer
2k views
How to load HTML/JavaScript from embedded resource into winform web browser
I want to have some HTML files with JavaScript loaded into the web browser control in a winforms (v2.0) application. During execution, I won't have internet access, so JavaScript and HTML forms will ...
1
vote
2answers
556 views
WebBrowser source from a byte[]
I have a WPF WebBrowser Component, and I want to set the uri from a byte array of a .htm file,
is that possible, or I have to save the byte stream first?
1
vote
2answers
500 views
How to convert the selected WP7 accent brush to an HTML Color code?
I have a page that mostly consists of HTML in a WebBrowser control. I was able to set the background quite easily using the PhoneLightThemeVisibility Resource because it's either Black or White.
I ...
2
votes
1answer
478 views
.net compact framework web browser component and html content
I'm developing a simple .net cf application (vb.net .net 3.5 windows mobile 6.5) that must present html content in a fullscreen form using the webbrowser component supplied with the framework.
The ...
0
votes
1answer
287 views
how to use a local filesystem in silverlight webbrowser control ?
Hello everyone. I'm using Silverlight webbrowser control, and I'm having some problems with that. I'm trying to use a Html page in a webbrowser control in my silverlight project, and i want to load ...
1
vote
3answers
179 views
Is there a way to track Internet Explorer Error messages from the WebBrowser Control?
Is there a way to track error messages in a webBrowser control? For example, in Firefox or Internet Explorer, I can look at the console output for Javascript errors. Is there a way to track those ...
0
votes
3answers
360 views
How do I set an embedded html file as the page to navigate to in a webBrowser control?
I have a live webpage that will act as the output of my program.
I would like to include the source html file and have the browser navigate to that for initialization instead of putting the entire ...
1
vote
3answers
292 views
Is it possible to run JavaScript within a webBrowser Control without accessing a specific page?
I am building a web page live as output for my application. This means that I'm editing the document text directly, instead of pointing the control to a file. I have the following code:
...
4
votes
2answers
454 views
How can I display local HTML in the windows phone web browser?
I want to use a web browser to present some multimedia information with locally stored HTML files. The problem is that it just presents the static content without any HTML elements, and also doesn't ...
1
vote
2answers
684 views
How to get access to the <HEAD> element of a HTML document using a webbrower control in WinForms?
I'm using WinForms C# 3.5 WebBrowser
I’m trying to get access to the head element in the follow HTML Document:
this.webBrowserTest.DocumentText = @”<html>
<head>
...
1
vote
1answer
4k views
Importing a local HTML file/code into a WebBrowser
I'm trying to get a local HTML file to display within a WebBrowser in a VB.NET program. I'm using the code below, however it doesn't seem to work, and I can't figure out why:
'first method
...
1
vote
2answers
333 views
click on element inside of iFrame
My built-in browser downloaded a page.
On this page under "body" there is an "iframe" tag.
Inside of this iframe there is another code (div tags, table etc).
But I don't know how to access them.
...
3
votes
3answers
1k views
Open generated Web Page with WebBrowser object in VB
I'd like to know if it possible to show HTML page created in VB using WebBrowser object without using files on disk.
That is, create HTML file in memory and show it within WebBrowser object.
Thanks!
0
votes
0answers
180 views
Editing HTML in C# [closed]
In a specific URL, there is an embedded object with the following options, but I want the height and width to equal that of my form.
style="display: block; width: 100%; height: 100%; " width="989" ...
0
votes
1answer
628 views
Export dynamically generated webbrowser control content to excel
I have a windows application in which an html report is displayed using the webbrowser control. The content of webbrrowser control is generated dynamically and provided as below
...
0
votes
0answers
172 views
Content in Document Text and Source code is Different
I am writing a web page automation that pulls data from a website after filling out some forms. The automation and data collection part should be quite easy, but I can't get the full web page ...
1
vote
0answers
186 views
how to render html to bitmap AND output hyperlink region?
There are many ways to render a html page to a bitmap, but in my case, I need to output all hyperlink region (rect, polygon or some other simple shapes) as well as the url. What is the simplest way to ...


