Question on WebBrowser control
Hello everybody,
I try to build a client Internet browser, in my form, I've used the WebBrowser control to navigate.
The problem is: I want it show some notify message when the WebBrowser control get to the website completely. I've tried to use Thread.Sleep() but it seems that it stop the WebBrowser control task. ( The WebBrowser control stop GetRespone from the website )
Could somebody tell me how to do that ?
Any helps would be appreciated,
TheMy
Re: Question on WebBrowser control
Check out the DownloadComplete event.
Re: Question on WebBrowser control
Or maybe the .Busy or .ReadyState property? Or the NavigateComplete event?
Re: Question on WebBrowser control
Hello guys,
I can't find the DownloadComplete method.
But anyway, the busy method works perfectly.
Thanks for your helps
Best regards,
TheMy
Re: Question on WebBrowser control
DownloadComplete is an event, not a method. ;)
Re: Question on WebBrowser control
Also I might have been wrong and it might be the NavigateComplete event like dee-u suggested.