private void button2_Click(object sender, EventArgs e) { CadastroCliente telaCliente = new CadastroCliente(); telaCliente.ShowDialog(); Cliente rec = telaCliente.envia_Cliente() as Cliente; textBox3.Text = rec.IdCliente.ToString(); textBox4.Text = rec.Nome; }
private void button2_Click(object sender, EventArgs e) { CadastroCliente telaCliente = new CadastroCliente(); telaCliente.ShowDialog(); Cliente rec = telaCliente.envia_Cliente() as Cliente; // o cliente é instanciado atraves de um metodo pois este ja retorno um objeto do tipo cliente if (!String.IsNullOrEmpty(rec.Nome) && !String.IsNullOrEmpty(rec.IdCliente.ToString())) // verifica se os campos do cliente instanciados estao preenchidos { textBox3.Text = rec.IdCliente.ToString(); textBox4.Text = rec.Nome; } }