Пример #1
0
        private void cmd_NON_Click(object sender, System.EventArgs e)
        {
            frmTaNonSeq dlg = new frmTaNonSeq();

            if (dlg.ShowDialog() == DialogResult.OK)
            {
                list = dlg.list;
            }
        }
Пример #2
0
 private void cmd_NON_Click(object sender, System.EventArgs e)
 {
     if (R_NON.Checked && !R_ALL.Checked)
     {
         frmTaNonSeq dlg = new frmTaNonSeq();
         if (dlg.ShowDialog() == DialogResult.OK)
         {
             list = dlg.list;
         }
     }
     else if (radChucVu.Checked && !R_ALL.Checked)
     {
         frmChon frChon = new frmChon();
         if (frChon.ShowDialog() == DialogResult.OK)
         {
             list = frChon.arrListMaChucVu;
         }
     }
 }