Web Browser Object Question

  • Thread starter Thread starter Kfir Marouani
  • Start date Start date
K

Kfir Marouani

Hi,
I'm working with VS 2005.

I'm using a WebBrowser object that has an even called DocumentCompleted.
The thing is this even is called whenever a frame of the page has been
completed and I want it to be only when the entire page is downloaded.

Any ideas?
Thanks in advance.
Kfir.
 
You can query the ReadyState property of WebBrowser on each
"DocumentCompleted" event.
 
Thanks. It seems to work.

Althought there are still some sites that are splited so it "thinks" the
same page is two pages.
 
Back
Top