How can I put, and use, a progress bar for my web browser control, in a windows application project, using the c# language?
Use WebBrowser.ProgressChanged
Event, but to report the progress use the code below:
private void WebBrowser1_ProgressChanged(Object sender,
WebBrowserProgressChangedEventArgs e)
{
progressBar.Maximum = (int) e.MaximumProgress;
if (e.CurrentProgress > 0)
progressBar.Value = (int) e.CurrentProgress;
}