示例#1
0
        private void toolStripMenuItem3_Click(object sender, EventArgs e)
        {
            ImpOldBF frm_impOldbf = new ImpOldBF();

            frm_impOldbf.ShowDialog(this);
            button_SAVE_Click(null, null);
        }
示例#2
0
 private void button_OK_Click(object sender, EventArgs e)
 {
     if (this.radioButton_ImpOldBF.Checked == true)
     {
         ImpOldBF frm_impoldbf = new ImpOldBF();
         frm_impoldbf.Show();
         this.Close();
     }
     else if (this.radioButton_ImpNewBF.Checked == true)
     {
         ImpNewBF frm_impnewbf = new ImpNewBF(frm1);
         frm_impnewbf.Show();
         this.Close();
     }
     else if (this.radioButton_NOImp.Checked == true)
     {
         this.Close();
     }
     else
     {
         // do nothing
         this.Close();
     }
 }