Tagged Questions
0
votes
0answers
15 views
Script error in Webbrowser, page doesn't load
I have a form called form1 with a webbrowser called webbrowser1. I navigate to http://plus.im with the webbrowser, but the webbrowser shows a script error and the page doesn't load (only the silver ...
0
votes
0answers
19 views
change postdata with BeforeNavigate2 Event
i use vb2008 with webbrowser control and ie 8.0 xp sp3
here is the function
Private Sub WebBrowser1_BeforeNavigate2(ByVal pDisp As Object, ByRef Url As Object, ByRef Flags As Object, ByRef ...
0
votes
0answers
16 views
change postdata values and parameters before sending webbrowser
in the enevent beforenavigating
Dim ie = DirectCast(WebBrowser1.ActiveXInstance, SHDocVw.InternetExplorer)
AddHandler ie.BeforeNavigate2, AddressOf WebBrowser_BeforeNavigate2
Private Sub ...
0
votes
0answers
33 views
Script errors while browsing websites using WebBrowser
I'm writing a simple web browser and I get some script errors the doesn't occur when I display those sites using IE9.
I know how to suppress these errors but I want to prevent them.
For example, ...
-4
votes
0answers
33 views
VB.Net Navigate, wait, navigate to another link, wait, navigate and so on [closed]
I want my web browser to navigate to a page, wait a few seconds then navigate to another page and wait again a total of 5 times.
Thanks ahead!
0
votes
0answers
52 views
How to modify c# 4.5 WPF webbrowser element before start rendering
I want to inject javascript code just below the head element
For example below code
<script src="C:\jquery-1.9.1.min.js" type="text/javascript"></script>
<script ...
0
votes
0answers
22 views
How do web browsers cache webpages?
First question
Do web browsers cache webpages I visited by default?
Second question
If the web browsers cache all the webpage I visited, gradually they will consume more and more space (disk and ...
0
votes
0answers
122 views
Vb.Net Element.InvokeMember(“click”)
I'm trying to make auto log in and search on youtube for some keyword, the part with log in and typing the keyword is work but i can't make after the keyword is written to click on search this is my ...
-4
votes
1answer
62 views
script Error IE [closed]
When the page loads in the application window pops up window with a script error. What to do?How to fix code programmatically ?
How to include property Silent in webbrowser
0
votes
0answers
51 views
reference css from webbrowser string
I want to use Windows Phone 8 webbrowser.NavigateToString() function, but it does not display images from isostorage. I know I can do it if I navigate to a URL in isostorage, but I would much rather ...
5
votes
1answer
381 views
delphi webbrowser: how to prevent or hide that javascript error?
I am running TEmbeddedwb and I got a javascript timeout error while navigating on that TEmbeddedwb .
(I do not have this error while running in my internet explorer !)
The browser asks me if I ...
0
votes
0answers
50 views
event call from another class
There are two forms and one class.
On one form is two buttons. 1 - Start runs to a page. 2 - the button opens a browser window to display action happening on the page. In the class you want to ...
0
votes
1answer
73 views
How to pass data bettween IE browser to Dot NET web browser Control
I have opened the IE browser from DOT NET web browser control. But I could not transfer data bettween both. Can any one tell how to pass the data bettween IE browser control to DOT NET web browser ...
0
votes
1answer
135 views
Make a web browser as modal popup window in my web site
Hi guys I just found out that it's possible to implement a draggable modal popup using web browser itself.that how tinymce and joomla and other popular frameworks use it. And my questions is how can ...
2
votes
1answer
213 views
CoInternetSetFeatureEnabled with FEATURE_BLOCK_INPUT_PROMPTS does not work
I am trying to use CoInternetSetFeatureEnabled API for blocking prompt dialog as it show below in application that hosts WebBrowser control, but it does not work. Updating registry does not work ...
-1
votes
1answer
460 views
how to open clickable link in new tab webbrowser
I have a form with Tabcontrol that has 2 tab pages.... tabpage1 and tabpage2.
Tabpage1 has webbrowser1 and tabpage2 has webbrowser2.
webbrowser1 navigates to a URL, example will be yahoo.com.
...
0
votes
1answer
215 views
Application hangs while waiting for WebBrowser control to complete
Why does my application hang until WebBrowserDocumentCompleted completes loading the page? What can I do to keep my application responsive during this time?
disabled subscription ...
1
vote
1answer
521 views
HtmlAgilityPack getting page title and H1 tags
Hey all i am trying to get the page title and H1 tags from a webpage by doing the following
doc.LoadHtml(htmlSourceCode)
txtTitle.Text = doc.GetElementsByTagName("title").InnerText()
...
0
votes
1answer
309 views
VB.net WebBrowser1 getting value from javascript on call
Hey all i have this javascript within my VB code that checks for if a player is paused or running:
Dim isPlaying As String = ...
0
votes
0answers
106 views
Wrking with webBrowser control and Javascript
I have two problems, regarding working with Webbrowser. I have a list of web pages, of the same address but with changing parameter value. The page address is:
...
-1
votes
1answer
135 views
How can i blocked dialog box for webbrowser c# [closed]
How can i blocked dialog box for webbrowser?
on the dialog box. And my program is paused...
How can i blocked dialog box.
İ can use this code but its not works.
private void ...
1
vote
0answers
93 views
WebBrowser does not expect the page loads on Yandex
public partial class WebBrowserForm : Form
{
public WebBrowserForm()
{
InitializeComponent();
webBrowser.Navigate("http://ya.ru");
}
private void PlayButtonClick(object ...
2
votes
1answer
57 views
how does browser know that an activex control is safe?
How does IE browser know that an activex control is safe?
Any policy or method in IE?
Thanks for any one who consider this.
0
votes
1answer
77 views
How to control web browser using some programming language?
I am looking for a way to control a web browser such as firefox or chrome. I need something like "selenium webdriver" but that will allow me to open many instances URL load, get http headers, response ...
2
votes
1answer
316 views
WebBrowser vs WebBrowserBase class
before i reference non .net builtin(alternatives)
i would like to know about
The built-in .Net Classes could offer to use :
WebBrowser & WebBrowserBase Classes
what i would like to know is ...
1
vote
3answers
232 views
Disabling Ctrl+P in webBrowser control
It seems like it's impossible to disable printing in a webBrowser control.
Here's what I've tried:
Setting WebBrowserShortcutsEnabled to FALSE
This still shows a print dialog when pressing ...
-1
votes
2answers
303 views
Downloading images with dynamic and session maintained URL through the web browser component of VB.NET 2008
How do I to download an embedded image using web browser control of VB.NET, that we can achieve by right clicking on the image and doing 'save picture as'?
I am developing a VB.NET project that ...
1
vote
1answer
69 views
What is the WPF equivalant of DocumentCompleted?
I checked. This question has not been asked yet. What is the WPF equivalant of DocumentCompleted for the WebBrowser class?
the DocumentCompleted method does not exist in WPF (at least not in the ...
0
votes
3answers
915 views
Display Custom Dialog When File Downloaded
Looking for a solution to my issue. We are building a web browser control into a product for a client, they need to be able to detect when there is a File Upload box on a website, then instead of it ...
0
votes
1answer
458 views
Make content fit in webbrowser in windows phone 7?
I have a webbrowser. I load a url with only a picture. The picture is larger than the webbrowser. How can I make the picture resize to fit the webbrowser so that the user won't need to zoom in and ...
0
votes
1answer
177 views
limit download file size WebBrowser C# WINFORMS
I am building a webbrowser in WINFORMS C#. I want to limit the download file size to under 25mb. Is there any way to access the download file dialog fields which pops out when a download is detected. ...
0
votes
1answer
125 views
Loading Symbol in WebBrowser Control
I want to show my client a big circular loading symbol in my web-browser when he is waiting for a page to load. Is it possible with the webbrowser tool present in visual studio? if possible then how? ...
2
votes
1answer
456 views
Is it possible to force a WebBrowser to, instead of opening in a new window, replace the currently opened window?
So I have a link I'm trying to click on a WebBrowser control. The problem is it pops up in a new tab, making IE open. I can't manage the web pages after it opens in IE, so I need to force it to ...
-2
votes
2answers
3k views
How to clear browsing history using WebBrowser control in C#
I want to clear the browsing history of a WebBrowser control in C# after the WebBrowser completes its browsing.
This is my code:
try
{
foreach (string sr in File.ReadAllLines("link.txt"))
{
...
0
votes
0answers
277 views
How to implement Proxy List in C# WebBrowser component?
How to implement (Browse from path "c:\Proxy List.txt") Proxy List in C# WebBrowser control/Component.
What I want to know, is how to implement proxy-list from "c:\proxylist.txt", so my C# webBrowser ...
1
vote
1answer
273 views
MSHTML: Is there a way to attach events or behaviors to an element after Drag/Drop or Paste?
I'm working with the WebBrowser control, using the DesignMode function for editing HTML. I'm using the MSHTML interfaces in order to look at and modify the DOM.
Take for example an input text box - I ...
2
votes
1answer
537 views
Loading large html file in webbrowser from another thread
I am designing a small application and so far I've been lucky enough to keep my threading simple and efficient so the ui is responsive.
Now I'm facing a problem where I need to load large local html ...
1
vote
0answers
88 views
URL details lost
i used to call the browser_Navigating event twice, to enable UserAgent - switches for WP7. everything's working fine, but for example the user-input in loginboxes are missing. I experienced this on ...
0
votes
1answer
160 views
How to get pointer to WebBrowser control in CDHtmlDialog?
are there any ideas how to get pointer to WebBrowser control from CDHtmlDialog to use extended functionality of WebBrowser which is not included in very limited CDHtmlDialogAPI?
1
vote
1answer
138 views
umlaut in wp7 webbrowser displayed incorrectly
I have an issue with WebBrowser content at windows phone 7.
Need to display multy-language web content in my app. Such pages has encoding="utf-8.
Umlauts displayed as another symbols instesd of ...
1
vote
1answer
959 views
WPF WebBrowser Browser Version
Does the WPF WebBrowser control depend on the version of IE that is installed on the user's machine, or does it use a separate library that is consistent across machines? I've read that it only ...
2
votes
1answer
446 views
Webbrowser: sequencing activites when no DocumentCompleted is fired by a link on hosted webpage
Given this method to work on a HTML page in a webbrowser:
bool semaphoreForDocCompletedEvent;
private void button12_Click(object sender, EventArgs e)
{
...
0
votes
1answer
212 views
How to release memory whilst navigating web documents using a Windows.Forms.WebBrowser control
The following code, run in a windows form, creates a WebBrowser control and navigates to a number of URLs. Each time a URL is navigated to the memory consumed by the application increases and never ...
0
votes
1answer
287 views
Multiple instances of web browser control using different proxies
I need to run 2 or more instances of my program (which is a simple webbrowser control with some extra features), and on each instance I need the webbrowser control to use a different proxy to connect ...
1
vote
1answer
511 views
Does .NET webbrowser.stop() function fire DocumentCompleted event?
I use the webbrowser control of .NET to open piles of urls,and the loop is called in the DocumentCompleted event.
Now I want to control the timeout.So I use a timer,and when timeout it will stop the ...
8
votes
3answers
2k views
How to detect javascript execution in WebBrowser control
I have a WebBrowser control in my C# application. The webbrowser is under the user's control, that is, he can load any webpage his computer can access on the web (of course limited by proxy, hosts ...
2
votes
1answer
789 views
WebBrowser Refresh - Internet Explorer needs to resend the information
I have a problem with WebBrowser control. When page is being refreshed (even if JavaScript caused it), it shows me the message:
To display the webpage again, Internet Explorer needs to resend the ...
0
votes
1answer
702 views
Select Input:File programmatically in Webbrowser control VB.net 2010
I have a website where I am filling form data through VB.Net 2010 through WebBrowser control.
I am able to set value for input:text, input:password, checkbox, select and able to submit form.
But I ...
0
votes
1answer
340 views
How to use web browser control in the browser?
I'm trying to load a HTML page via the web browser control in my Silverlight project, but it seems that the content of the control can only be viewed from out-of-browser mode.
Is there in way to use ...
0
votes
0answers
363 views
Must pass uppercase to set MSHTML element attribute (.setAttribute) correctly, why? And CaseInsensitive .setAttribute doesn't work
Basically, I am using .setAttribute to try and add/change the target attributes value in an anchor tag (). The whole problem started because when using .setAttribute "target", "_self" the HTML is ...
