End Google Ads 201810 - BS.net 01 --> while (WebBrowser.IsBusy == true)
{
Application.DoEvents();
}

Im using the code above in a documentcompleted method (a html form has to be submitted) to wait until the WebBrowser is finished loading the document which works but its sucking up all the processor's cycles. Is there any to limit checking to once a second without splitting the method up or using events ?