how do i do this? I dragged it accross from the toolbar but must add an event or something to teh webbrowser1?!
please help!
how do i do this? I dragged it accross from the toolbar but must add an event or something to teh webbrowser1?!
please help!
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
JPosted Sep 1, 2007, 2:49 PM
thanks michael b I used that code and it works but my progressbar is still there?!
do i have to add something like if processchanged then progessBar1.focus = False somewhere?
michael bPosted Aug 30, 2007, 8:09 PM
on webbrowser option add a progress change 1 and this code
private void webBrowser1_ProgressChanged(object sender, WebBrowserProgressChangedEventArgs e)
{
toolStripProgressBar1.Maximum = Convert.ToInt32(e.MaximumProgress);
toolStripProgressBar1.Value = Convert.ToInt32(e.CurrentProgress);
}
Mike GoldPosted Aug 30, 2007, 7:01 PM
What Progress Bar are you refering to? AJAX UpdateProgress?
Best,
-Mike