private void cEXWB1_WBEvaluteNewWindow(object sender, csExWB.EvaluateNewWindowEventArgs e)
 {
     newfrm = new frmPopup();
     newfrm.isSecondaryPopup = true;
     newfrm.Show();
     newfrm.PopupName = MainScript.AddPopup(this.PopupName, e.url);
     newfrm.SetURL(m_MainForm, MainScript, e.url);
     newfrm.BringToFront();
 }
Beispiel #2
0
 private void SetupNewForm()
 {
     if (newfrm != null)
     {
         return;
     }
     newfrm = new frmPopup();
     newfrm.isSecondaryPopup = true;
     newfrm.Show();
     newfrm.BringToFront();
 }
Beispiel #3
0
 private void SetupNewForm()
 {
     if (newfrm != null)
         return;
     newfrm = new frmPopup();
     newfrm.isSecondaryPopup = true;
     newfrm.Show();
     newfrm.BringToFront();
 }
Beispiel #4
0
 private void cEXWB1_WBEvaluteNewWindow(object sender, csExWB.EvaluateNewWindowEventArgs e)
 {
     newfrm = new frmPopup();
     newfrm.isSecondaryPopup = true;
     newfrm.Show();
     newfrm.PopupName = MainScript.AddPopup(this.PopupName, e.url);
     newfrm.SetURL(m_MainForm, MainScript, e.url);
     newfrm.BringToFront();
 }