Exemple #1
0
        private void BTModifChofer_Click(object sender, EventArgs e)
        {
            try
            {
                if (DGV_Camiones.SelectedRows.Count == 0)
                {
                    throw new Exception("No se ha seleccionado ningún Camión");
                }

                if (DGV_Camiones.SelectedRows.Count > 1)
                {
                    throw new Exception("Se ha seleccionado mas de un Camión");
                }

                string _Codigo = DGV_Camiones.SelectedRows[0].Cells[0].Value.ToString();

                //AgModCamiones ModifCamion = new AgModCamiones(Codigo, Desc, Patent, NomProve, NomChof, Estado, CodEmp, Aplica, CodChof, CodProveedor, FechaVenc1, FechaVenc2, FechaVenc3, FechaVenc4, FechaVenc5, OrdFecVenc1, OrdFecVenc2, OrdFecVenc3, OrdFecVenc4, OrdFecVenc5, FechaEnt1, FechaEnt2, FechaEnt3, FechaEnt4, FechaEnt5, OrdFecEnt1, OrdFecEnt2, OrdFecEnt3, OrdFecEnt4, OrdFecEnt5, Coment1, Coment2, Coment3, Coment4, Coment5, Titulo);
                AgModCamiones ModifCamion = new AgModCamiones(_Codigo);
                ModifCamion.ShowDialog();
                TraerLista();
                P_Filtrado.Visible = false;
            }
            catch (Exception err)
            {
                MessageBox.Show(err.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Exemple #2
0
        private void BTAgregarCamion_Click(object sender, EventArgs e)
        {
            AgModCamiones AgregarCamion = new AgModCamiones();

            AgregarCamion.ShowDialog();
            TraerLista();
        }