private void tb_placa_TextChanged(object sender, EventArgs e) { string placa = this.tb_placa.Text; if (placa == "") { return; } Carro car = new Carro(); car.CAR_PLACA = placa; car.Carregar(); this.tb_placa.Text = car.CAR_PLACA; this.tb_modelo.Text = car.CAR_MODELO; this.tb_marca.Text = car.CAR_MARCA; this.tb_cor.Text = car.CAR_COR; this.tb_ano.Text = car.CAR_ANO.ToString(); this.tb_km_ultima_troca.Text = car.CAR_KM_ULTIMA_TROCA_OLEO.ToString(); this.tb_cada_troca.Text = car.CAR_KM_CADA_TROCA_OLEO.ToString(); this.tb_cada_troca_correia.Text = car.CAR_KM_CADA_TROCA_CORREIA.ToString();; this.tb_ultima_troca_correia.Text = car.CAR_KM_ULTIMA_TROCA_CORREIA.ToString();; }