Ejemplo n.º 1
0
        private void mantenimientosLíneasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Globales.Usuario.RegistrarBitácora(Globales.Conexion, "Bitacora", "Mantenimiento de Lineas");
            mantenimientoLineas temp = new mantenimientoLineas();

            //temp.WindowState = FormWindowState.Maximized;
            temp.MdiParent = this;
            temp.Show();
        }
Ejemplo n.º 2
0
        private void btnEditar_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtDescripcion.Text))
            {
                MessageBox.Show("Debe agregar la descripción de la Línea.");
                return;
            }
            else
            {
                if (string.IsNullOrEmpty(txtCondicion.Text))
                {
                    MessageBox.Show("Debe agregar la condicíon de la línea.");
                    return;
                }
                else
                {
                    if (string.IsNullOrEmpty(txtEstado.Text))
                    {
                        MessageBox.Show("Debe agregar el estao de la línea.");
                        return;
                    }
                    else
                    {
                        try
                        {
                            Lineas_Entity Line   = new Lineas_Entity();
                            Lineas_BO     Lineas = new Lineas_BO();
                            Line.iCodLineas     = txtCod.Text;
                            Line.strDescripcion = txtDescripcion.Text;
                            Line.iCondicion     = txtCondicion.Text;
                            Line.iEstado        = txtEstado.Text;
                            Lineas.vModificarLinea(Line);
                            MessageBox.Show("Lineas ha sido Modificado.");
                            mantenimientoLineas prdu = new mantenimientoLineas();
                            prdu.MdiParent = this.MdiParent;
                            this.Close();
                            prdu.Show();
                        }

                        catch (Exception ex)
                        {
                            MessageBox.Show(ex.Message);
                        }
                    }
                } //termina if
            }
        }
Ejemplo n.º 3
0
        private void btnEliminar_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtCod.Text))
            {
                MessageBox.Show("Debe escribir el id de la Lineas a eliminar.");
                return;
            }
            else
            {
                Lineas_Entity Line   = new Lineas_Entity();
                Lineas_BO     Lineas = new Lineas_BO();
                Line.iCodLineas = txtCod.Text;

                Lineas.vEliminarLinea(Line);
                MessageBox.Show("Lineaa ha sido Eliminada.");
                mantenimientoLineas prdu = new mantenimientoLineas();
                prdu.MdiParent = this.MdiParent;
                this.Hide();
                prdu.Show();
            }
        }