private void BtnDelete_Click(object sender, EventArgs e)
 {
     // Delete document:
     try
     {
         using (DBAuditDataContext dc = new DBAuditDataContext())
         {
             var c = dc.ProDeleteCure(ComboDocNo.Text);
         }
         MessageBox.Show(@"تمت إضافة بيانات السلفة المؤقتة بنجاح", @"المراجع الذكي", MessageBoxButtons.OK, MessageBoxIcon.Information);
         this.Close();
         FrmModifyCure Frm = new FrmModifyCure();
         Frm.ShowDialog();
     }
     catch (Exception EX)
     {
         MessageBox.Show(EX.Message);
     }
 }