Exemple #1
0
        public void HelpLocation_Load(object sender, EventArgs e)
        {
            HelpLocation with_1 = this;

            with_1.TextBox_OfficeHelp.Text = settings1.OfficeHelp;
            with_1.TextBox_ExcelHelp.Text  = settings1.ExcelHelp;
        }
Exemple #2
0
        public void btnOk_Click(object sender, EventArgs e)
        {
            HelpLocation with_1 = this;

            settings1.OfficeHelp = with_1.TextBox_OfficeHelp.Text;
            settings1.ExcelHelp  = with_1.TextBox_ExcelHelp.Text;
            this.Close();
        }
 public void Group_Help_DialogLauncherClick(object sender, RibbonControlEventArgs e)
 {
     if (frmHelpLocation == null)
     {
         frmHelpLocation = new HelpLocation();
     }
     frmHelpLocation.ShowDialog();
 }