Ejemplo n.º 1
0
 // Executed when the user clicks on Tools -> Options
 private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
 {
   using (OptionsForm of = new OptionsForm())
   {
     of.ShowDialog(this);
   }
 }
Ejemplo n.º 2
0
 // Executed when the user clicks on Tools -> Options
 private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         using (OptionsForm of = new OptionsForm())
         {
             of.ShowDialog(this);
         }
     }
     catch (Exception ex)
     {
         Program.ShowMessageBox("FrmWebBrowser", ex);
     }
 }