webbrowser

is it possible to make my own toolbar for an internet browser using visual c++ ?

hello we everyday use toolbars on browser such as google's, microsoft students',... i was wondering how to create one using vc++ ? ...

How can I disable the webbrowser message in python?

In my python program, when I send the user to create a gmail account by use of the webbrowser module, python displays: "Please enter your Gmail username: Created new window in existing browser session." Is there any way to get rid of "created new window in existing browser session", as it takes up the space where the user types in thei...

Why is WebBrowser_DocumentCompleted() firing twice?

Well, I'm using a simple webbrowser control to browse to a page, so I need to change the Text of the form while doing so. I'm using - private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { this.Text += " - " + webBrowser1.Document.Domain; } but using a breakpoint, i noticed that, this ...

Delphi,VCL... rendering web components on form

Hi, how can I render a part of website to a bitmap using delphi? recently I've seen Raudus framework which is ExtJs binding/wrapper for delphi. However what is unique about that, it does render components to look exactly like in the browser. Simply, it works like kind of WYSIWYG designer for Javascript components in delphi IDE. I was un...

Are DOM style calls limited by frequency?

I'm trying to resize an html element (flash object) but it doesn't seem to respond more than once per second? Is this a limitation imposed by browsers (both IE7 and FF3 do this)? Or should I be attempting to resize in a different/more efficient way? function setHeightNow(height) { if (document.getElementById) { if (height >...

Use java.awt.Desktop on client/server application for open browser on client

I'm trying to use the desktop class in client/server application. I want the default browser to open on the client side when the client clicks on a button. What happens is that the browser opens on the server. How can I fix it? Thanks ...

WebBrowser control HTMLDocument automate selecting option drop-down

I'm trying to automate in a WinForm using a WebBrowser control to navigate and pull report info from a website. You can enter values in textboxes and invoke the click events for buttons and links, but I have not figured out how select a option drop-down .... in a automated way. Anybody recommend how to select a item from a drop-down, giv...

How browser retrieve web page

I have little question about how web browser retrieve webpage? I know this User request www.example.com --> web browser resolve DNS of www.example.com using DNS Server --> It got something like 156.23.15.12 --> then web browser request 156.23.15.12 --> It retrive all document and render web page and display it to user. ...

Windows Service Webbrowser object invalid cast exception error

Hi all, I'm having a bit of trouble with a Windows Service webbrowser object. It's attempting to load in values of username and password to a site but keeps failing and throwing the following error: System.InvalidCastException: Specified cast is not valid. at System.Windows.Forms.UnsafeNativeMethods.IHTMLDocument2.GetLocation() a...

jsf components rendering very slowly in IE ,but render faster in FF and chrome

I have a JSF application where the UI components render very slowly in IE7 but give a much better performance.Dont know what can be done ,but just throwing this question out for suggestion if any setting/configuration makes it perform better ...

Getting Yahoo IP address is not working.

I get the Yahoo IP address using InetAddress class in java. The result of yahoo.com IP address is not working while given in URL of web browsers. InetAddress[] all = InetAddress.getAllByName("www.yahoo.com"); for (int i=0; i<all.length; i++) { System.out.println(" address = " + all[i]); } ...

Python: web login script, what's the problem ??

this is the script >> import ClientForm import urllib2 request = urllib2.Request("http://ritaj.birzeit.edu") response = urllib2.urlopen(request) forms = ClientForm.ParseResponse(response, backwards_compat=False) response.close() form = forms[0] print form sooform = str(raw_input("Form Name: ")) username = str(raw_input("Username: ")) ...

.NET Running 2 instances of the WebBrowser Control (separate cookie containers)

I'm trying to login to my website with two different accounts (admin/regular user) to test out some permissions masks - in short its a simple admin tool. Is there any way to run 2 instances of the WebBrowser control with separate cookie containers on two separate windows without having to execute your program twice? Edit: I'm using C#. ...

Suggestions on including the web browser control in VB.Net desktop application.

I am writing a desktop app in VB.Net, and I'd like to include a web browser control to automate certain functions the user might have to perform in the browser. I have to render the page so I do not want to use the webrequest to make direct calls. When I publish the app, do I have to be concerned with which version of Internet Explorer t...

Clearing C#'s WebBrowser control's cookies for all sites WITHOUT clearing for IE itself

EDIT: As far as I know, there is no solution to this problem, making it yet another testament to the fact that one should not use C#'s WebBrowser. We ended up with a warning sign at the start of our program, notifying the user that cookies will be cleared for IE. The short version of what I'm trying to do is in the title. Here's the lon...

snapshot of website with provided URL address, through vb.net code

i have seen google chrome, whenever you open a new tab, it will show you the last 8 pages that you have visited. I want to do a similar thing, except i have a vb.net code behind the .aspx file, which shall give me a list of URL's called form the database. When the page is loaded the URL's are displayed on it. what i need my code to do is...

How can I set controls for a web page ??

I have this login page with https, and i reach to this approach:: import ClientForm import urllib2 request = urllib2.Request("http://ritaj.birzeit.edu") response = urllib2.urlopen(request) forms = ClientForms.ParseResponseEx(response) response.close() f = forms[0] username = str(raw_input("Username: ")) password = str(raw_input("Passw...

How to convert InnerText to InnerHtml in Webbrowser Control in C#?

I'm working on a WYSIWYG editor with builtin spell checker Hunspell and online highlighting of misspelled words. I'm using Webbrowser control as a html handler. It's a way easy to spell check text than html in webbrowser control, but following this way I'm losing all html formatting. So the question is: is there any way to spell check bo...

browser events to close the application

how trigger the action script when browser is closed in flex what i want is when the browser is closed ,an alert has to be show to continue or not ,later the event to stored in the databse plz help me ...

How I can check gzip decoding time in the web browser?

I want to check the performance of the gzip decoding speed in a web browser. In the Java or c#, we can easily check the gzip decoding time. But I can not measure the decoding time in the web browser. plz help me. I want to check some decoding speed of gzipped html files. With JavaScript can I measure the performance. ...