1
由於某種原因,我程序中的事件處理程序不再工作。這個我以前跑過幾次的確切代碼。AxWebbrowser事件處理程序不再工作
object loc = "http://www.google.com/";
object null_obj_str = "";
System.Object null_obj = 0;
this.axWebBrowser1.Navigate2(ref loc , ref null_obj, ref null_obj, ref null_obj_str, ref null_obj_str);
this.axWebBrowser1.DocumentComplete += new AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEventHandler(this.axWebBrowser1_DocumentComplete);
private void axWebBrowser1_DocumentComplete(object sender, AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEvent e)
{//Do some action}
沒有理由不這樣做,但這正是發生了什麼事情。我嘗試製作其他事件,但他們也不工作。任何投入將不勝感激。