コード例 #1
0
ファイル: frmColegio.cs プロジェクト: moiAbarca/IMC7
        private void btnGuardar_Click(object sender, EventArgs e)
        {
            ngColegio car = new ngColegio();

            if (txtCod_Colegio.Text.Trim().Length == 0 || txtDireccion.Text.Trim().Length == 0 || txtNombre.Text.Trim().Length == 0 || txtTelefono.Text.Trim().Length == 0)
            {
                MessageBox.Show("Ningún campo puede estar vacío");
                return;
            }
            else
            {
                if (String.IsNullOrEmpty(car.buscColegio(this.txtCod_Colegio.Text).Cod_Colegio))
                {
                    ngColegio ncargo = new ngColegio();
                    ngColegio tod    = new ngColegio();
                    ncargo.Cod_Colegio = txtCod_Colegio.Text;
                    ncargo.Direccion   = txtDireccion.Text;
                    ncargo.Nombre      = txtNombre.Text;
                    ncargo.Telefono    = txtTelefono.Text;

                    tod.ingresaCurso(ncargo);
                    MessageBox.Show("Colegio Guardado Correctamente");
                    Limpiar();
                }
                else
                {
                    MessageBox.Show("Colegio ya existe", "Mensaje Sistema");
                    return;
                }
            }
        }
コード例 #2
0
ファイル: frmListarColegio.cs プロジェクト: moiAbarca/IMC7
        private void btoMostrar_Click(object sender, EventArgs e)
        {
            //srGuardaDatosAlumnos.wsGuardaDatosAlumnosSoapClient auxSwGuardarDatosAlumnos = new srGuardaDatosAlumnos.wsGuardaDatosAlumnosSoapClient();
            ngColegio car = new ngColegio();

            this.dgListadoCargos.DataSource = car.retornaColegioDataSet();
            this.dgListadoCargos.DataMember = "Colegio";
        }
コード例 #3
0
ファイル: frmColegio.cs プロジェクト: moiAbarca/IMC7
        private void btnEliminar_Click(object sender, EventArgs e)
        {
            ngColegio ncargo = new ngColegio();

            if (String.IsNullOrEmpty(ncargo.buscColegio(this.txtCod_Colegio.Text).Cod_Colegio))
            {
                MessageBox.Show("No se puede eliminar Colegio", "Mensaje Sistema");
            }

            else
            {
                ncargo.eliminarColegio(txtCod_Colegio.Text);
                MessageBox.Show("Colegio eliminado", "Mensaje Sistema");
                Limpiar();
                this.txtCod_Colegio.Focus();
            }
        }
コード例 #4
0
ファイル: frmColegio.cs プロジェクト: moiAbarca/IMC7
        private void txtCod_Colegio_Leave(object sender, EventArgs e)
        {
            ngColegio ncar  = new ngColegio();
            Colegio   ncar2 = new Colegio();

            ncar2 = ncar.buscColegio(txtCod_Colegio.Text);
            if (String.IsNullOrEmpty(ncar2.Cod_Colegio))
            {
                return;
            }
            else
            {
                txtCod_Colegio.Text = ncar2.Cod_Colegio;
                txtDireccion.Text   = ncar2.Direccion;
                txtNombre.Text      = ncar2.Nombre;
                txtTelefono.Text    = ncar2.Telefono;
            }
        }