예제 #1
0
 private void GetDataBeca(int id)
 {
     try
     {
         DataTable dt = beca.GetTabla(id);
         for (int i = 0; i < dt.Rows.Count; i++)
         {
             bool BecaAntes = Convert.ToBoolean(dt.Rows[i]["bec_BecadoAntes"].ToString());
             if (BecaAntes)
             {
                 bec_BecadoAntesSII.Selected = true;
             }
             else
             {
                 bec_BecadoAntesNOO.Selected = true;
             }
             bool estatusBeca = Convert.ToBoolean(dt.Rows[i]["bec_EstatusBecado"].ToString());
             if (estatusBeca)
             {
                 bec_EstatusCONAFESII.Selected = true;
             }
             else
             {
                 bec_EstatusCONAFENOO.Selected = true;
             }
             bool suspension = Convert.ToBoolean(dt.Rows[i]["bec_SuspensionEstudios"].ToString());
             if (suspension)
             {
                 bec_SuspenciosEstudiosSII.Selected = true;
             }
             else
             {
                 bec_SuspenciosEstudiosNOO.Selected = true;
             }
             bool becadoAntes = Convert.ToBoolean(dt.Rows[i]["bec_BecadoAntes"].ToString());
             if (becadoAntes)
             {
                 bec_BecadoAntesSII.Selected = true;
             }
             else
             {
                 bec_BecadoAntesNOO.Selected = true;
             }
             bool Oportunidades = Convert.ToBoolean(dt.Rows[i]["bec_EstatusOportunidades"].ToString());
             if (Oportunidades)
             {
                 bec_EstatusOportunidadesSII.Selected = true;
             }
             else
             {
                 bec_EstatusOportunidadesNOO.Selected = true;
             }
             alu_Peso.Text     = dt.Rows[i]["bec_Peso"].ToString();
             alu_Estatura.Text = dt.Rows[i]["bec_Estatura"].ToString();
         }
     }
     catch (Exception) { }
 }
예제 #2
0
        void LlenarSiExiste(int id)
        {
            DataTable dt = a.GetTabla(id);

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                bool estatusBeca = Convert.ToBoolean(dt.Rows[i]["bec_EstatusBecado"].ToString());
                if (estatusBeca)
                {
                    bec_EstatusBecadoSII.Selected = true;
                }
                else
                {
                    bec_EstatusBecadoNOO.Selected = true;
                }
                bool suspension = Convert.ToBoolean(dt.Rows[i]["bec_SuspensionEstudios"].ToString());
                if (suspension)
                {
                    bec_SuspenciosEstudiosSII.Selected = true;
                }
                else
                {
                    bec_SuspenciosEstudiosNOO.Selected = true;
                }
                bool becadoAntes = Convert.ToBoolean(dt.Rows[i]["bec_BecadoAntes"].ToString());
                if (becadoAntes)
                {
                    bec_BecadoAntesSII.Selected = true;
                }
                else
                {
                    bec_BecadoAntesNOO.Selected = true;
                }
                bool Oportunidades = Convert.ToBoolean(dt.Rows[i]["bec_EstatusOportunidades"].ToString());
                if (Oportunidades)
                {
                    bec_EstatusOportunidadesSII.Selected = true;
                }
                else
                {
                    bec_EstatusOportunidadesNOO.Selected = true;
                }
            }
        }