Пример #1
0
        private void btCancelar_Click(object sender, RoutedEventArgs e)
        {
            this.Hide();
            PagPrincAdmin w = new PagPrincAdmin();

            w.Show();
        }
Пример #2
0
        private void btGuardar_Click(object sender, RoutedEventArgs e)
        {
            int res = -1;

            if (dtpFecha.SelectedDate != null)
            {
                DateTime fecha1 = dtpFecha.DisplayDate;
                String   fecha  = fecha1.ToString("yyyy-MM-dd");
                String   hora   = txHoras.Text + ":" + txMin.Text + ":00.00";

                Evento a = new Evento(Int16.Parse(txClaveUnica.Text), txNom.Text, cbCarreras.SelectedIndex, txOrg.Text, txLugar.Text, fecha, hora, txDescrip.Text);
                res = a.agregar(a);
            }

            if (res > 0)
            {
                MessageBox.Show("Evento dado de alta.");
            }
            else
            {
                MessageBox.Show("Evento no dado de alta.");
            }

            this.Hide();
            PagPrincAdmin w = new PagPrincAdmin();

            w.Show();
        }
Пример #3
0
        private void btModifica_Click(object sender, RoutedEventArgs e)
        {
            int res = -1;

            if (dpFecha.SelectedDate != null)
            {
                DateTime fecha1 = dpFecha.DisplayDate;
                String   fecha  = fecha1.ToString("yyyy-MM-dd");
                String   hora   = txHoras.Text + ":" + txMin.Text + ":00.00";
                Evento   a      = new Evento(Int16.Parse(txCu.Text), txLugar.Text, fecha, hora);
                res = a.modificar(a);
            }

            if (res > 0)
            {
                MessageBox.Show("Evento actualizado.");
            }
            else
            {
                MessageBox.Show("Evento no actualizado.");
            }

            this.Hide();
            PagPrincAdmin w = new PagPrincAdmin();

            w.Show();
        }
        private void ingresarBT_Click(object sender, RoutedEventArgs e)
        {
            String res = Conexion.comprabarPwd(txAdmin.Text, txContraseña.Password);

            if (res.Equals("Contraseña Correcta"))
            {
                PagPrincAdmin w = new PagPrincAdmin();
                w.Show();
                this.Close();
            }

            else
            {
                MessageBox.Show(res);
            }
        }
Пример #5
0
        private void btElimina_Click(object sender, RoutedEventArgs e)
        {
            int    res;
            Evento a = new Evento(Int16.Parse(txCu.Text));

            res = a.eliminar(Int16.Parse(txCu.Text));
            if (res > 0)
            {
                MessageBox.Show("Evento dado de baja.");
            }
            else
            {
                MessageBox.Show("Evento no dado de baja.");
            }
            this.Hide();
            PagPrincAdmin w = new PagPrincAdmin();

            w.Show();
        }