private void reactivationToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (_reactivation == null || _reactivation.IsDisposed == true)
     {
         _reactivation = new frmReactivation();
         _reactivation.Show();
     }
     _reactivation.BringToFront();
 }
 private void LnkLbReactivation_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     if (_reactivation == null || _reactivation.IsDisposed == true)
     {
         _reactivation = new frmReactivation();
         _reactivation.Show();
     }
     _reactivation.BringToFront();
 }
        private void tsbLoad_Click(object sender, EventArgs e)
        {
            if (dgList.SelectedRows.Count == 0)
            {
                return;
            }

            intid = Convert.ToInt32(dgList.SelectedRows[0].Cells["id"].Value);

            frmReactivation frmAloc = new frmReactivation();

            frmAloc.id = intid;
            frmAloc.Show();
            this.Close();
        }
        private void LnkLbReactivation_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            frmReactivation frm = new frmReactivation();

            frm.Show();
        }