private void eliminar() { try { if (!validar("consultarEstudiante")) { return; } clsMatriculasOPE objMatri = new clsMatriculasOPE(strNombreAplica); objMatri.IdentEstu = this.txtIdentEstu.Text.Trim(); objMatri.IdGrupo = Convert.ToInt32(ddlGrupo.SelectedValue); objMatri.GvGen = this.gvMatricula; if (!objMatri.eliminarOpe()) { mostrarMsj(objMatri.Error); objMatri = null; return; } mostrarMsj(objMatri.Mensaje); objMatri = null; limpiarControles("eliminar"); inhabilitarControles("eliminar"); } catch (Exception ex) { mostrarMsj(ex.Message); } }
private void registrar() { try { if (!validar("registrar")) { return; } clsMatriculasOPE objMatri = new clsMatriculasOPE(strNombreAplica); objMatri.IdentEstu = this.txtIdentEstu.Text.Trim(); objMatri.FechDeMatr = this.txtFechaDeMatr.Text.Trim(); objMatri.IdGrupo = Convert.ToInt32(this.ddlGrupo.SelectedValue); objMatri.IdDeporte = Convert.ToInt32(this.ddlDeporte.SelectedValue); objMatri.GvGen = this.gvMatricula; if (!objMatri.registrarOpe()) { mostrarMsj(objMatri.Error); objMatri = null; return; } mostrarMsj(objMatri.Mensaje); objMatri = null; limpiarControles(""); consultarEncargado(); } catch (Exception ex) { mostrarMsj(ex.Message); } }
private void llenarDropDown(DropDownList ddlDrop) { try { clsMatriculasOPE objOpe = new clsMatriculasOPE(strNombreAplica); objOpe.DdlGen = ddlDrop; objOpe.IdDeporte = ddlDeporte.SelectedIndex; if (!objOpe.llenarDrop()) { mostrarMsj(objOpe.Error); return; } } catch (Exception ex) { mostrarMsj(ex.Message); } }
private void llenarGiv() { try { clsMatriculasOPE objMatri = new clsMatriculasOPE(strNombreAplica); objMatri.GvGen = this.gvMatricula; if (!objMatri.cargarMatriculasOpe()) { mostrarMsj(objMatri.Error); objMatri = null; return; } mostrarMsj(objMatri.Mensaje); objMatri = null; } catch (Exception ex) { mostrarMsj(ex.Message); } }
private bool consultar() { try { if (!validar("consultar")) { return(false); } clsMatriculasOPE objMatri = new clsMatriculasOPE(strNombreAplica); objMatri.IdentEstu = this.txtIdentEstu.Text.Trim(); objMatri.IdDeporte = Convert.ToInt32(this.ddlDeporte.SelectedValue); if (!objMatri.consultarMatriculaOpe()) { mostrarMsj(objMatri.Error); objMatri = null; return(false); } strIdGrupoViejo = objMatri.IdGrupo.ToString(); ddlGrupo.SelectedValue = strIdGrupoViejo; txtFechaDeMatr.Text = Convert.ToDateTime(objMatri.FechDeMatr).ToString("yyyy-MM-dd"); llenarInfoGrupo(); mostrarMsj(objMatri.Mensaje); objMatri = null; inhabilitarControles("consultar"); return(true); } catch (Exception ex) { mostrarMsj(ex.Message); return(false); } }