private void DocsLinksCreate_Load(object sender, System.EventArgs e) { this.Cursor = Cursors.WaitCursor; browser.SelfNavigate = true; browser.Navigate(baseURL + "?" + paramStr); this.Cursor = Cursors.Default; }
private void CreateContactDialog_Activated(object sender, System.EventArgs e) { this.Cursor = Cursors.WaitCursor; webBrowser.SelfNavigate = true; webBrowser.Navigate(baseURL + ((baseURL.IndexOf("?") > 0) ? "&" : "?") + paramStr); this.Cursor = Cursors.Default; this.Activated -= new System.EventHandler(CreateContactDialog_Activated); }
private void UserDialog_Load(object sender, EventArgs e) { this.Cursor = Cursors.WaitCursor; browser.SelfNavigate = true; //browser.Url = new Uri(baseURL + ((baseURL.IndexOf("?") > 0) ? "&" : "?") + paramStr); browser.WBWantsToClose += new EventHandler(BrowserClose); browser.Navigate(baseURL + ((baseURL.IndexOf("?") > 0) ? "&" : "?") + paramStr); this.Cursor = Cursors.Default; }
private void PersonDialog_Activated(object sender, System.EventArgs e) { this.Cursor = Cursors.WaitCursor; //LoadBrowser(); browser.SelfNavigate = true; //browser.Url = new Uri(baseURL + ((baseURL.IndexOf("?")>0)?"&":"?") + paramStr); browser.Navigate(baseURL + ((baseURL.IndexOf("?") > 0) ? "&" : "?") + paramStr); this.Cursor = Cursors.Default; this.Activated -= new System.EventHandler(PersonDialog_Activated); }