Here is the code:

webBrowser1.Navigate(textBox1.Lines[0]); while (webBrowser1.IsBusy) { MessageBox.Show("11"); } 

Boxing with the message does not climbs. Although the browser loads the page.

    1 answer 1

    Solution option:

     webBrowser1.Navigate(textBox1.Lines[0]); while (webBrowser1.ReadyState != WebBrowserReadyState.Complete) { MessageBox.Show("11"); } 

    Works. But wondering why IsBusy does not work.