0
votes
0answers
24 views

c# webbrowser winforms http basic authentication - prompt user to input password

I'm working on a c# webclient using winforms. I need the webbrowser control to prompt the origin windows authentication popup, when navigating to the page like in IE. I've already read the ...
0
votes
0answers
16 views

Geolocation in WinForms application

I want to create a WinForms app that can detect location just like a web browser would using the javascript function navigator.geolocation.getCurrentPosition(showPosition); Is there some way to do ...
0
votes
1answer
46 views

C# Forms WebBrowser control SendKeys not reliable with PDF loaded

I have a WebBrowser control in a WinForm app. I'm loading a PDF (using Adobe Reader XI) as such: string url = Path.GetFullPath("test.pdf"); webBrowser1.Navigate(url); Once this is loaded I am ...
1
vote
1answer
70 views

Displaying PDF on WebBrowser Control not working

I Have a test.pdf and I want to display it inside in my form. My code is very simple: public Form1() { InitializeComponent(); ...
-1
votes
0answers
40 views

Tweet feed show in C# Desktop Application [closed]

I create a widget for tweet feed in a web application but now I show perfectly this tweet feed in my C# windows desktop application with the help of browser control, but I need show this tweet feed in ...
0
votes
2answers
37 views

Not possible to open excel documents after open a document in WebBrowser Control

I am developing a windows application to merge two excel files and then view the result in webBrowser control. I have done this but i am not able to open other Excel files after open the merged ...
0
votes
1answer
47 views

C# webbrowser control causes flash.ocx error on application exit

I've built a webbrowser using C# with the webbrowser control. However every time a page is loaded which contains flash content the application will give an error on exit. It states that the ...
0
votes
1answer
33 views

cache webpage in c# winform

I'm using c# winform to write a desktop app. The app needs to show a webpage at startup. However I'm not sure if the Internet is available at each startup so I want to cache the webpage at each run. ...
0
votes
1answer
61 views

Gecko for windows forms and geolocation. How to accept request for share my location?

My main purpose is get my current geolocation. I've tried to do it with standart control "WebBrowser" but geolocation is not supported by it. So now I'm trying to implement Gecko wrapper ...
0
votes
1answer
57 views

C# autodetect popup and click yes

I am creating a C# application where I am loading some websites into an webbrowser element. The website is loaded with: myWebbrowser.Navigate(URL) or by clicking a link on a webpage. My problem is ...
1
vote
1answer
77 views

Hide modal window generated by showModalDialog in WebBrowser

I have this page: <body> <script> function showModal() { // do some things here... var address = 'http://localhost:61948/modal.aspx'; ...
0
votes
2answers
69 views

WebBrowser control throws seemingly random NullReferenceException

For a couple of days I am working on a WebBrowser based webscraper. After a couple of prototypes working with Threads and DocumentCompleted events, I decided to try and see if I could make a simple, ...
-1
votes
1answer
128 views

using webbrowser control for getting value in c#

I am going to write an application as following : There is a web application which via this web application,agencies communicate with central organization(sending data) Now ,One of these agencies ...
1
vote
1answer
41 views

Can't pause webBrowser1_Navigating event in winform. c#

I try to record some internet activity through mouse hook in webbrowser control in winform application. Vary rare happens to click to a link and to not record that click just because everything ...
0
votes
1answer
199 views

InvokeMember(“click”) in WebBrowser control

a website show a table based options to choose. Html is <td width="33%" class="cont"><input type="radio" name="gatewayIDV" onclick="setBank(11,0,1)"> <td width="33%" ...
0
votes
2answers
196 views

How to call WebBrowser Navigate to go through a number of urls?

To collect information on a webpage, I can use the WebBrowser.Navigated event. First, navigate to the url: WebBrowser wbCourseOverview = new WebBrowser(); wbCourseOverview.ScriptErrorsSuppressed = ...
0
votes
0answers
79 views

How do I prevent “Access Denied” response executing an ajax call from a Windows Forms WebBrowser control

I have a System.Windows.Forms.WebBrowser control that loads a web page. This web page has a button inside that triggers an ajax call to add more data to the web page. But every time the "xhr.open" ...
1
vote
1answer
83 views

WebBrowser control using project resources

I have a WinForm app with a WebBrowser control on it. I create HTML programmatically. How do I use images from the project's resources inside the HTML? Visual Basic 2010 Express. Public Class Form1 ...
0
votes
1answer
153 views

.NET WebBrowser Control and Refresh

I have a simple WinForm with a WebBrowser control on it that displays an image from the Web. The image is refreshed according to the Timer1. It works fine until I press F5 or use 'Refresh' option from ...
0
votes
1answer
132 views

How to Search a Text on a WebBrowser?

I'm beginner in C# and I have an issue. I need to popup a message box each time I find an occuracy in a webBrowser control after doing a search request, the occuracy will be selected at this time. ...
0
votes
1answer
47 views

Change contents without redirecting to about:blank

I'm currently working on an application that modifies a specific web page to hide irrelevant information and the displays it in a WebBrowser control in the application window. Unfortunately as soon as ...
1
vote
1answer
155 views

get javascript variable into webbrowser control winforms

I'm using a webbrowser control in visual studio 2010 to invoke JS script.I'm able to call a function from the web browser but i'm looking to get a varible value from JS and use it in the winform. I ...
0
votes
0answers
86 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
256 views

Download a file through the WebBrowser control

I have a WebBrowser control on a form, but for the most part it remains hidden from the user. It is there to handle a series of login and other tasks. I have to use this control because there is a ton ...
0
votes
1answer
568 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 ...
0
votes
1answer
126 views

how to set webbrowser control document body size according to webbrowser control size

my webbrowser control height and width is minimum as compare to page that i load in to webbrowser control thats why page not completely show in my webbrowser control. i want to show full page in give ...
0
votes
1answer
424 views

Popup window webbrowser control

I am using a webbrowser control to get some information from a website. It has a detail link, which when clicked, opens a popup window and shows the details in the webbrowser. How can I do these if ...
0
votes
1answer
62 views

Is there a way to type things in WebBrowser in Windows Forms?

I have a webBrowser (System.Windows.Forms.WebBrowser) in my windows form, And I have set the url property to "http://www.google.com", And when I run the solution, it shows google in my form. My ...
0
votes
1answer
209 views

How to change WebBrowser control User Agent in C# [closed]

I am a beginner in using WebBrowser Control in C#. I try to change the User Agent string in a WebBrowser control in my Windows form. How can i do this ? Please Help.
1
vote
1answer
160 views

Not able to set Url property at runtime in webbrowser control

I have a webbrowser control in my Winform application. Below regions belong to division of code sample. Region 1 The current url page loaded is "http://MyWebsite.com". I am clicking a link (say ...
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 ...
2
votes
1answer
113 views

Reloading or refreshing WebBrowser control and Form in general

I have Form with programatically created controls. One of them is WebBrowser which displays captcha image. User then inputs the captcha in the textbox and if it is wrong the form is supposed to ...
0
votes
1answer
56 views

WebBrowserDocumentCompleted

how to make that ongoing actions WebBrowserDocumentCompleted worked in a separate thread. And so it does not affect the main form (not hang the entire application) Form1 private void ...
0
votes
0answers
100 views

how to add text at the end of the cursor's position in webbrowsercontrol. [closed]

i need to add text in webbrowser control. i change in html code within the webbrowser control so when i append text on any button click it append text on last position of text not on cursor position. ...
0
votes
1answer
130 views

How can I fit my HTML page to the Web Browser in win Form?

I can navigate to google in a simple web browser (with doc in parent control), but i get a resolution too bi for my component size. I hope you can help me.
0
votes
1answer
157 views

Touch gestures support of WinForms controls in WPF application

There are two versions of WebBrowser control (WinForms and WPF). WPF version supports touch and multitouch gestures. Does WinForms version of WebBrowser embedded in WPF application with ...
0
votes
1answer
114 views

How to send HTML email with multiple Images

i want to send html mail with multiple images. i am using webbrowsercontrol to embedded multiple images but when i send mail HTML email along with Image in HTML then I receive only html mail without ...
0
votes
1answer
204 views

Load local html file in webbrowser control in editable mode

I want to load a local html file in webbrowser control in editable mode. My code for loading in html file in webBrowser is: private void LoadFile(string filename) { using (StreamReader reader = ...
0
votes
1answer
195 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 ...
0
votes
0answers
74 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 ...
0
votes
0answers
80 views

WebBrowser Control WebBrowserDocumentCompletedEventArgs LocalPath

I have the following method to navigate winforms WebBrowser Control to urlString. private void NavigateToUrl(string urlString) { this.webContainer.Navigate(urlString); } And I Have overridden ...
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
100 views

IEWebGL with Windows Forms WebBrowser Control

I have a website which I created using three.js and I have installed IEWebGL on my machine and all is working fine in Firefox, Chrome and IE9. However due to our requirements and the need to integrate ...
0
votes
0answers
101 views

what's wrong with this code? Can't find the correct location of webbrowser element

private Point GetElementPosition(IHTMLElement current_element) { int x_add = current_element.offsetWidth; int y_add = current_element.offsetHeight; int x = ...
0
votes
1answer
301 views

Loading big HTML file in c# web browser control on win form

I am developing a Windows Application using C# using .net 4.0 where in we have to show big HTML files in web control. The application works fine with the sizes up to 100 MB, but some time we need to ...
1
vote
0answers
39 views

How do I hook a javascript function in C# Web Browser control? [duplicate]

Possible Duplicate: Invoke C# code from JavaScript in a Document in a WebBrowser Not sure that this would be possible with the WinForms browser control, but I would like to somehow setup a ...
4
votes
1answer
83 views

Is there any way to determine whether a user clicked Print or Cancel in WebBrowser.ShowDialog()?

I'm just trying to determine if the user selected Print or Cancel from the dialog. I can't find any event or property that might let me know whether or not the document displayed in the WebBrowser ...
1
vote
1answer
207 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 ...
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 ...
4
votes
3answers
688 views

CefWebBrowser doesn't show up

Solution: This issue is caused by not loading the CefRuntime in the Program.cs. Simply copying all code in the sample file to your Program.cs. And then if your CefWebBrowser is stuck and having "a ...

1 2 3 4 5 9