Tagged Questions
0
votes
2answers
26 views
Click an element on a web page
What I'm trying to do is click a specific element on a website which will run a javascript command. I'm not sure whether I should use a Web Browser or HTTP Web Requests. I don't need someone to code ...
0
votes
0answers
44 views
How to integrate a webbrowser different than Internet Explorer?
I'm having much problems with the InternetExplorer webbrowser control and I'm trying to integrate a different webbrowser (No matter which, just I will try all the possibilities).
I want to know which ...
0
votes
1answer
39 views
Clicking a button on a website within VB code
I have located the button in VB code:
Form1.WebBrowser1.Document.GetElementsByTagName("input").Item(3)
From this HTML code on the website:
<input value="Log In" tabindex="4" type="submit" ...
0
votes
1answer
43 views
Alter web page to append button and run VB.NET code on click
I'd like to search for particular phrases within a WebBrowser dialog, and append a button after each, then on clicking that button, run a piece of VB.NET code.
E.G if it was searching for an ...
0
votes
0answers
37 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
40 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
29 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
1answer
178 views
Saving pdf document from webbrowser control
I'm navigating from webbrowser control to an url like this;
http://www.who.int/cancer/modules/Team%20building.pdf
It's shown in webbrowser control. What I want to do is to download this pdf file to ...
0
votes
0answers
35 views
remove hidden input webbrowser
here is the html
<input type="hidden" name="visited" value="anything" />
to
<input type="hidden" name="visited" value="" />
or remove all this ...
0
votes
1answer
56 views
change input value of hidden input in current document webbrowser
here is the html
<input type="hidden" name="visited" value="aW5kZXgucGhwPw==" />
vb.net
dim PageElements As HtmlElementCollection WebBrowser1.Document.GetElementsByTagName("input")
...
0
votes
1answer
64 views
WebBrowser does not display content correctly
I use vb.net + wpf+ System.Windows.Forms.WebBrowser to display web content on a wpf form.
This website "http://manuim.com/laisha/" does not display correctly on the control.
When I checked on ...
0
votes
0answers
36 views
Login to a secured website using geckofx
I want to automate some works like report download etc from a secured website. So Can i login to a secured website having SSL using geckofx browser control? If possible then how can i do it? I also ...
-5
votes
2answers
131 views
Download or display captcha from a website [closed]
In my application i have to include a captcha of another website.This is used for some verification purpose. In my application i am doing it without displaying all content which are there in that ...
0
votes
1answer
268 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 ...
0
votes
0answers
92 views
Vb.NET - How to monitor JSON requests through WebBrowser Control
Anyone know how to catch/watch JSON/Ajax Service Requests/Posts from a WebBrowser Control?
For Example when your on say google.com and your using Google Chrome. You right-click in the "Search" box ...
0
votes
1answer
135 views
VB.NET Why web browser control not display in Instagram.com
I use VB.NET Web Browser Control Navigate to instagram.com but it's not display Why?
Here is the code I use :
Webbrowser1.Navigate("Instagram.com")
Here is a screenshot of the result
1
vote
0answers
60 views
Webbrowser control issue in citrix server?
I am using a web browser control in my Win Form which is installed in a citrix server when i try to open the application in my local it is working fine (even in IE) without any errors.When I try to ...
0
votes
0answers
167 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 ...
1
vote
1answer
630 views
VB.NET WebBrowser control - how do you submit to default browser?
I have a webbrowser control in my VBForm.
It looks for a website on my site and displays it.
There are form submit buttons in that WebBrowser1.
I would like it to be so that when they click a button ...
0
votes
0answers
95 views
WebBrowser control does not display images
I've got this problem using the WebBrowser control of Visual Studio for a VB.NET app. I put the control, but when I browse, images don't show correctly.
I took a random wiki page and this happened:
...
0
votes
1answer
820 views
Can I change the rendering engine of the WebBrowser control to an older version?
i have an application with a webbrowsercontrol. this webbrowsercontrol is going to load a page that is not compatible with IE9. (cannot change this because its produced by somebody else) By default ...
1
vote
1answer
52 views
How do i execute javascript that was loaded from the DOM
I am trying to execute a function in a javascript that has been loaded via the DOMDocument.
For instance:
'on page load
Webbrowser1.navigate("a htmldocument with a div called mainDiv")
Then later:
...
0
votes
0answers
160 views
Web browser control for secured websites [closed]
I want to create an application which is related to automation of internet banking, automatic report generation from different banks etc. So i want to use some Web browser wrapper control which can ...
0
votes
1answer
206 views
Web Request is a type and cannot be used as an expression
I am making an app for Windows Phone and since I need some login cookies that are saved in Web browser control, I am using the code from here: Grabbing Cookies in Web Browser Control - WP7 to create a ...
0
votes
1answer
88 views
WebBrowser control - Alter JavaScript
Ok, my program encounters some javascript which I want to block/redirect:
<SCRIPT language="Javascript">
<!--
var sWidth = screen.availWidth-10;
var sHeight = screen.availHeight-50;
...
0
votes
1answer
315 views
Interact with webbrowser with vb button in vb.net using classes
I'm just wondering how to have a send button implemented on the text input function i have already.
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ...
0
votes
0answers
120 views
VB.NET How to click Ok in msgbox on webbrowser-control?
VB.NET How to click ok in msgbox on webbrowser control ?
when msgbox show i tried this code
SendKeys.Send("{ENTER}")
but i'm just open webbrowser-control real time , does it another way ?
0
votes
2answers
679 views
Windows Phone 8 Web Browser control not working
I am trying to navigate to a URL but the web browser control either shows blank page or shows page cannot be found error. Here is my code:
Private Sub qwb_Loaded(sender As Object, e As ...
0
votes
1answer
628 views
VB.NET webbrowser controller can't set value in textbox
VB.NET webbrowser controller
can't set value in textbox
<input name="ctl00$ContentPlaceHolder1$txtUsername" type="text" id="ctl00_ContentPlaceHolder1_txtUsername" style="width:95%;" ...
-1
votes
1answer
193 views
How to handle webbrowser dialogboxes programatically
I need to click on "OK" button of the dialog box programatically which appears when I click on a button of a website in webbrowser control of vb.net. But when that box appears everyting is getting out ...
1
vote
2answers
307 views
Webbrowser Each Control different proxy
I wanted to know whether it is possible to set proxy for each different webbrowser in an application (same process).
I have searched a lot to find codes to change proxy system wide by modifying ...
0
votes
1answer
276 views
Form reloading data and Class variables resetting in VB.net
This program basically goes to a websites and gets all the links in a specific div tag.
It then navigates to each link and gets the links in those pages as well.
However, after getting the first ...
0
votes
1answer
198 views
winforms webbrowser control implementing IAuthenticate navigate fails with Attempted to read or write protected memory
I have an application which displays images and we're moving them to a different server. On the existing server, they can view as many images as they want and it won't ask them to log in again. On ...
1
vote
2answers
379 views
Out Of Memory Exception - unmanaged memory
I am working on a web scraper, and it gernally works quite well. It will go through thousands of pages on most sites and complete sucessfully with no issues.
On a few sites, I am repeatedly seeing ...
0
votes
0answers
80 views
Web Browser size controlled from a track bar
I have a text editor control (derived / based on a web browser control) on a form. When typing within that editor if I use the keyboard combinations of Control + or Control - the size / scale of the ...
2
votes
1answer
110 views
WebBrowser ignores the code
I am trying to use Mibbit irc in my project, and so far is working well, but there is a flaw. Links pasted in the chat upon click are getting opened in Internet explorer, instead of users' default web ...
0
votes
1answer
66 views
Regaining control of web browser control issue
I have a Windows form project(vs2010 - vb.net) were on a page load an url is loaded into a web browser control. The user then fills in around 6 pages of forms within the control. Once they get to the ...
-3
votes
1answer
272 views
How to change value via vb.net Webbbrowser control
Starting with this navigation call:
Webbrowser.Navigate("localhost")
the Webbrowser.Document object holds a ref. to a HTML object with the following attributes:
id="first"
name="first"
type="text"
...
1
vote
1answer
213 views
Print one page of WebBrowser
I am trying to automate printing of intranet websites. Since this is an application that will be put on a specific user's computer, which will be run on an as-needed basis, I'd like it to be as ...
-1
votes
1answer
518 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.
...
1
vote
3answers
920 views
How Do I Open a New Webbrowser Tab in Vb.net application
I have a Form1 with button1 and a webbrowser1. When I click on button1, I want to open a new web browser tab in the same form, not in Firefox or Internet Explorer or Chrome.
I tried using TabControl ...
1
vote
1answer
622 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
50 views
need function like getelementbyid and getelementsbytagname for working with any strings
I'm sorry for my poor English in advance.
I need to get elements like webbrowsercontrol.document.getelementsbytagname and webbrowsercontrol.document.getelementbyid from httpwebrequest. For some ...
0
votes
1answer
261 views
Webbrowser class DocumentComplete event not firing in class(not in WinForm)
I am using WebBrowser class in class.
I am trying to add webbrowser_documentcomplete event handler but I found that event not firing. Please find below code I am using. This code working with an ...
2
votes
3answers
293 views
Better Webbrowser Control with More Control Over Urls and Information?
I have an issue bugging me for the past few weeks.
What I'm trying to accomplish: I need a webbrowser control with the ability to change user agent (once at start) and referrer. But most important ...
-1
votes
1answer
241 views
Un-Share Session or Cookies of webbrowser control in VB.net
I have more than one webbrowser controls on my program, and it seams they all share session cookies.
What i want is that they DONT share the session cookies.
I have different webbrowser controls that ...
-1
votes
1answer
511 views
how to get Cookies Value From WebBrowser Control to Textbox in vb
I am finding how to get Cookies From WebBrowser Control to TextBox in Form of VB.
Example cookies that i checked on another software but i need it transfer to TextBox
CFID=683314; CFTOKEN=29469955
...
0
votes
0answers
298 views
Creating WebBrowser control to Auto Login website
I am first programmer in VB....now i want to create one form to auto Login website in webbrowser Control,i have 2 Form
Form2 is WebBrowser
Form1 like my picture , it have 2 button
my requirement is ...
1
vote
1answer
2k views
VB WebBrowser control auto click button on website
i need use webBrowser Control to auto click one button on website, i know about how to write code if i can get ( Name or Id ) but this website not set button name or ID .
here is code button on ...
0
votes
1answer
279 views
Trying to auto-loging in a website
I need to make an autologin job for a friend but I can't finish it, I can't use the id of the textboxes to insert text,
Debugger says: "Object reference not set to an instance of an object"
Can you ...


