private void comboBox2_SelectedIndexChanged(object sender, EventArgs e) { if (comboBox2.Text == "Cine") { NomTextBox2.Clear(); IDTextBox2.Clear(); DueñoTextbox2.Clear(); HorarioTextbox2.Clear(); textboxcineytiendayrestaurante2.Clear(); cinelabel2.Visible = true; tiendalabel2.Visible = false; restaurantelabel2.Visible = false; textboxcineytiendayrestaurante2.Visible = true; } else if (comboBox2.Text == "Recreacional") { NomTextBox2.Clear(); IDTextBox2.Clear(); DueñoTextbox2.Clear(); HorarioTextbox2.Clear(); textboxcineytiendayrestaurante2.Clear(); cinelabel2.Visible = false; tiendalabel2.Visible = false; restaurantelabel2.Visible = false; textboxcineytiendayrestaurante2.Visible = false; } else if (comboBox2.Text == "Restaurante") { NomTextBox2.Clear(); IDTextBox2.Clear(); DueñoTextbox2.Clear(); HorarioTextbox2.Clear(); textboxcineytiendayrestaurante2.Clear(); cinelabel2.Visible = false; tiendalabel2.Visible = false; restaurantelabel2.Visible = true; textboxcineytiendayrestaurante2.Visible = true; } else if (comboBox2.Text == "Tienda") { NomTextBox2.Clear(); IDTextBox2.Clear(); DueñoTextbox2.Clear(); HorarioTextbox2.Clear(); textboxcineytiendayrestaurante2.Clear(); cinelabel2.Visible = false; restaurantelabel2.Visible = false; textboxcineytiendayrestaurante2.Visible = true; tiendalabel2.Visible = true; } }
private void button4_Click_1(object sender, EventArgs e) { string nombreloc = NomTextBox2.Text; NomTextBox2.Clear(); IDTextBox2.Clear(); DueñoTextbox2.Clear(); HorarioTextbox2.Clear(); textboxcineytiendayrestaurante2.Clear(); if (comboBox2.Text == "Cine") { try { Cine asd = cines.Where(cine => cine.nombre == nombreloc).FirstOrDefault(); if (asd == null) { NomTextBox2.Text = "No Existe"; } else { NomTextBox2.Text = asd.nombre; DueñoTextbox2.Text = asd.dueño; IDTextBox2.Text = asd.id; HorarioTextbox2.Text = asd.horario; textboxcineytiendayrestaurante2.Text = asd.nSalas; } } catch { NomTextBox2.Text = "No Existe"; } } else if (comboBox2.Text == "Recreacional") { try { Recreacional asd = recreacionales.Where(recreacional => recreacional.nombre == nombreloc).FirstOrDefault(); if (asd == null) { NomTextBox2.Text = "No Existe"; } else { DueñoTextbox2.Text = asd.dueño; IDTextBox2.Text = asd.id; HorarioTextbox2.Text = asd.horario; } } catch { NomTextBox2.Text = "No Existe"; } } else if (comboBox2.Text == "Restaurante") { try { Restaurante asd = restaurantes.Where(restaurante => restaurante.nombre == nombreloc).FirstOrDefault(); if (asd == null) { NomTextBox2.Text = "No Existe"; } else { DueñoTextbox2.Text = asd.dueño; IDTextBox2.Text = asd.id; HorarioTextbox2.Text = asd.horario; textboxcineytiendayrestaurante2.Text = asd.mesasExclusivas; } } catch { NomTextBox2.Text = "No Existe"; } } else if (comboBox2.Text == "Tienda") { try { Tienda asd = tiendas.Where(tienda => tienda.nombre == nombreloc).FirstOrDefault(); if (asd == null) { NomTextBox2.Text = "No Existe"; } else { DueñoTextbox2.Text = asd.dueño; IDTextBox2.Text = asd.id; HorarioTextbox2.Text = asd.horario; textboxcineytiendayrestaurante2.Text = asd.categorias; } } catch { NomTextBox2.Text = "No Existe"; } } }