private void DocsLinksCreate_Load(object sender, System.EventArgs e)
 {
     this.Cursor          = Cursors.WaitCursor;
     browser.SelfNavigate = true;
     browser.Navigate(baseURL + "?" + paramStr);
     this.Cursor = Cursors.Default;
 }
예제 #2
0
        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);
        }
예제 #3
0
 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;
 }
예제 #4
0
        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);
        }