private void btnPesquisaCliente_Click(object sender, EventArgs e) { PesquisaCliente pro = new PesquisaCliente(); pro.ShowDialog(); cbbCliente.Text = pro.nome; pro.Close(); }
private void button1_Click(object sender, EventArgs e) { PesquisaCliente pro = new PesquisaCliente(); pro.ShowDialog(); //txtcodigopro.Text = pro.codigo; cbbCliente.Text = pro.nome; //txtmarca.Text = pro.marca; pro.Close(); }