private void cmbCurso_EditValueChanged(object sender, EventArgs e)
 {
     try
     {
         if (cmbCurso.EditValue != null && cmbCurso.EditValue != "")
         {
             Aca_Paralelo_Bus negParalelo = new Aca_Paralelo_Bus();
             cmbParalelo.Properties.DataSource = negParalelo.Get_List_Paralelo(Convert.ToInt32(cmbCurso.EditValue));
         }
     }
     catch (Exception ex)
     {
         string NameMetodo = System.Reflection.MethodBase.GetCurrentMethod().Name;
         MessageBox.Show(NameMetodo + " - " + ex.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
         Log_Error_bus.Log_Error(NameMetodo + " - " + ex.ToString());
     }
 }