private void txtCodCliente_Leave(object sender, EventArgs e) { try { ControleCliente cliente = new ControleCliente(); if (Convert.ToInt32(txtCodCliente.Text) == 298) { lbComprador.Visible = true; txtNomeComprador.Visible = true; } if (cliente.VerificaCliente(Convert.ToInt32(txtCodCliente.Text)) == null) { //PERGUNTA SE DESEJA CADASTRAR UM NOVO CLIENTE DialogResult d = MessageBox.Show("Cliente nao cadastro, DESEJA CADASTRAR AGORA ?", "AVISO!!", MessageBoxButtons.YesNo); if (d.ToString() == "Yes") { frmCadClientes frm = new frmCadClientes(); frm.ShowDialog(); frm.Dispose(); if (frm.codigo != 0) { PreencheCampos(cliente.BuscaInt(Convert.ToInt32(frm.codigo))); } return; } else { txtCodCliente.Clear(); txtCodCliente.Focus(); return; } } else { PreencheCampos(cliente.BuscaInt(Convert.ToInt32(txtCodCliente.Text))); } } catch { } }
private void btnLista_Click(object sender, EventArgs e) { frmPesquisaCliente frmCliente = new frmPesquisaCliente(); ControleCliente control = new ControleCliente(); frmCliente.ShowDialog(); if (frmCliente.codigo != 0) { PreencheCampos(control.BuscaInt(frmCliente.codigo)); } else { LimpaCampo(); } }