private void ModificacionRuta_Load(object sender, EventArgs e) { textBoxCodigo.Text = ruta.Codigo.ToString(); comboBoxCiudadOrigen.DataSource = CiudadDAO.SelectAll(); comboBoxCiudadDest.DataSource = CiudadDAO.SelectAll(); comboBoxTipoServ.DataSource = TipoServicioDAO.selectAll(); comboBoxCiudadOrigen.SelectedItem = ruta.CiudadOrigen; comboBoxCiudadDest.SelectedItem = ruta.CiudadDestino; comboBoxTipoServ.SelectedItem = ruta.Servicio; textBoxPBKg.Text = ruta.PrecioBaseKg.ToString(); textBoxPBPas.Text = ruta.PrecioBasePasaje.ToString(); checkBoxAct.Checked = ruta.Habilitado; textBoxCodigo.Enabled = false; comboBoxCiudadOrigen.Enabled = false; comboBoxCiudadDest.Enabled = false; comboBoxTipoServ.Enabled = false; textBoxPBKg.Enabled = false; textBoxPBPas.Enabled = false; checkBoxAct.Enabled = false; comboBoxServMod.DataSource = TipoServicioDAO.selectAll(); comboBoxCiudOrigMod.DataSource = CiudadDAO.SelectAll(); comboBoxDestMod.DataSource = CiudadDAO.SelectAll(); comboBoxServMod.SelectedIndex = -1; comboBoxCiudOrigMod.SelectedIndex = -1; comboBoxDestMod.SelectedIndex = -1; }
private void RegistroLlegadaDestino_Load(object sender, EventArgs e) { comboBoxAeroOrigen.DataSource = CiudadDAO.SelectAll(); comboBoxAeroDest.DataSource = CiudadDAO.SelectAll(); comboBoxAeroOrigen.SelectedIndex = -1; comboBoxAeroDest.SelectedIndex = -1; labelInforme.Hide(); }
private void ListadoRutas_Load(object sender, EventArgs e) { comboBoxTipoServ.DataSource = TipoServicioDAO.selectAll(); comboBoxCiudadOrig.DataSource = CiudadDAO.SelectAll(); comboBoxCiudadDest.DataSource = CiudadDAO.SelectAll(); comboBoxTipoServ.SelectedIndex = -1; comboBoxCiudadOrig.SelectedIndex = -1; comboBoxCiudadDest.SelectedIndex = -1; }
private void AltaRuta_Load(object sender, EventArgs e) { RutaDTO unaRuta = new RutaDTO(); this.ruta = unaRuta; comboBoxTipoServ.DataSource = TipoServicioDAO.selectAll(); comboBoxCiudadOrigen.DataSource = CiudadDAO.SelectAll(); comboBoxCiudadDest.DataSource = CiudadDAO.SelectAll(); comboBoxTipoServ.SelectedIndex = -1; comboBoxCiudadOrigen.SelectedIndex = -1; comboBoxCiudadDest.SelectedIndex = -1; }
private void CompraPasajeEncomienda_Load(object sender, EventArgs e) { comboBoxCiudOrig.DataSource = CiudadDAO.SelectAll(); comboBoxCiudDest.DataSource = CiudadDAO.SelectAll(); comboBoxCiudOrig.SelectedIndex = -1; comboBoxCiudDest.SelectedIndex = -1; dateTimePickerEnt.Value = DateTime.Now; dateTimePickerSal.Value = DateTime.Now; label5.Hide(); label6.Hide(); label7.Hide(); label8.Hide(); comboBoxCantPas.Hide(); numericUpDown1.Hide(); List <Tuple <ClienteDTO, ButacaDTO> > listaTupla = new List <Tuple <ClienteDTO, ButacaDTO> >(); this.listaPasajerosButacas = listaTupla; }