private void toolStripMenuItem3_Click(object sender, EventArgs e) { ImpOldBF frm_impOldbf = new ImpOldBF(); frm_impOldbf.ShowDialog(this); button_SAVE_Click(null, null); }
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(); } }