예제 #1
0
 private void btnNuevoTipo_Click_1(object sender, EventArgs e)
 {
     if (txtTipoClase.Text != "")
     {
         try {
             TipoVehiculo tipo = new TipoVehiculo();
             tipo.Tip_descripcion = txtTipoClase.Text;
             TipoABM.agregarTipo(tipo);
             CargarTipo();
             txtTipoID.Text    = "";
             txtTipoClase.Text = "";
             MessageBox.Show("Tipo de vehiculo Agregado!");
         }
         catch (Exception a) {
             MessageBox.Show("" + a);
             MessageBox.Show("tipo de vehiculo no Registrado!");
         }
     }
     else
     {
         MessageBox.Show("Campos Vacios");
     }
 }
예제 #2
0
 private void btnEditGT_Click_1(object sender, EventArgs e)
 {
     if (txtTipoClase.Text != "")
     {
         try {
             TipoVehiculo tipo = new TipoVehiculo();
             tipo.Tip_id          = int.Parse(txtTipoID.Text);
             tipo.Tip_descripcion = txtTipoClase.Text;
             TipoABM.editarTipo(tipo);
             CargarTipo();
             txtTipoID.Text    = "";
             txtTipoClase.Text = "";
             MessageBox.Show("Tipo de vehiculo Modificado!");
         }
         catch (Exception a) {
             MessageBox.Show("" + a);
             MessageBox.Show("No se pudo editar!");
         }
     }
     else
     {
         MessageBox.Show("Campos Vacios");
     }
 }
예제 #3
0
 private void btnEliminarTipo_Click_1(object sender, EventArgs e)
 {
     if (tblTipoVeh.CurrentRow != null)
     {
         try {
             TipoVehiculo tipo = new TipoVehiculo();
             tipo.Tip_id = Convert.ToInt32(tblTipoVeh.CurrentRow.Cells["ID"].Value.ToString());
             if (MessageBox.Show("Seguro quiere eliminarlo", "Importante!!", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
             {
                 TipoABM.eliminarTipo(tipo);
                 MessageBox.Show("Se elimino el Tipo correctamente", "Importante!!", MessageBoxButtons.OK, MessageBoxIcon.Information);
                 CargarTipo();
             }
         }
         catch (Exception a) {
             MessageBox.Show("" + a);
             MessageBox.Show("No se pudo eliminar!");
         }
     }
     else
     {
         MessageBox.Show("Seleccione una fila por favor", "Importante", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
예제 #4
0
 private void CargarTipo()
 {
     tblTipoVeh.DataSource = TipoABM.listarTipos();
 }