i want to call webBrowser.Navigate(string urlString) synchronously where webBrowser is windows forms control. I do this in such way
... private delegate void
Not the best way, but you can use this...
while (this.webBrowser.ReadyState != WebBrowserReadyState.Complete) { Application.DoEvents(); Thread.Sleep(100); }