Ejemplo n.º 1
0
 private void profileOptionsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         frmAdvancedSettings frmAdvancedSettings = new frmAdvancedSettings();
         frmAdvancedSettings.ShowDialog();
     }
     catch (Exception ex)
     {
         HelperFunctions.ShowError(ex);
     }
 }
Ejemplo n.º 2
0
        private void bnAdvanced_Click(object sender, EventArgs e)
        {
            try
            {

                frmAdvancedSettings frmAdvancedSettings = new frmAdvancedSettings();
                frmAdvancedSettings.ShowDialog();
            }
            catch (Exception ex)
            {
                HelperFunctions.ShowError(ex);
            }
        }