Hi There,
Suddenly my EO.WebBrowser has stopped working. it is not showing any website loaded and it also not directly calling WebView Closed event.
it is also not giving any error message, is there a method or property in EO to enable the logging for any errors ?
please find sample code below.
private void frmMain_Load(object sender, EventArgs e)
{
m_MainWebView.WebView.LoadComplete += WebViewMainLoadComplete;
m_MainWebView.WebView.Closed += m_webViewMain_Closed;
m_MainWebView.WebView.Url = "https://www.google.com";
}
void m_webViewMain_Closed(object sender, EventArgs e)
{
//call is coming here
Console.WriteLine("Webpage is closing");
}
void WebViewMainLoadComplete(object sender, NavigationTaskEventArgs e)
{
//call is NOT coming here
Console.WriteLine("Website loaded....");
}
More over on our production test environment it is also started to crash the application with below error of Rundll32
Regards,
Ashish