private void btnConsCliente_Click(object sender, EventArgs e) { FormGridClientes grid = new FormGridClientes(this, "consulta_venda"); grid.MdiParent = this.ParentForm; grid.Show(); }
private void FormCadClientes_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.F6) { if (btnConsultaGeral.Enabled == true) { LimparCampos(); OrganizaBotoes(); FormGridClientes grid = new FormGridClientes(this, "clientes"); grid.MdiParent = this.ParentForm; grid.Show(); } } else if (e.KeyCode == Keys.Enter) { if (e.Shift) { e.SuppressKeyPress = true; SendKeys.Send("+{TAB}"); } else { e.SuppressKeyPress = true; SendKeys.Send("{TAB}"); } } }
private void btnConsultaGeral_Click(object sender, EventArgs e) { LimparCampos(); OrganizaBotoes(); FormGridClientes grid = new FormGridClientes(this, "clientes"); grid.MdiParent = this.ParentForm; grid.Show(); }
private void butConsultar_Click(object sender, EventArgs e) { Cliente cli = new Cliente(); PessoaFisica cliPf = new PessoaFisica(); PessoaJuridica cliPj = new PessoaJuridica(); if (tbCodigoCliente.Text.Length == 0) { LimparCampos(); OrganizaBotoes(); FormGridClientes grid = new FormGridClientes(this, "clientes"); grid.MdiParent = this.ParentForm; grid.Show(); } else { cli.IdCliente = Convert.ToInt32(tbCodigoCliente.Text); cli.LocalizaCliente(); if (cli.Cnpj == "") { cliPf.Cpf = cli.Cpf; cliPf.ConsultarRegistro(); radPessoaFisica.Checked = true; tbApelido.Text = cliPf.Apelido; tbBairro.Text = cli.Bairro; tbCep.Text = cli.Cep; tbCidade.Text = cli.Cidade; tbCpfCnpj.Text = cliPf.Cpf; dtDataNascimento.Value = cliPf.Nascimento; tbEmail.Text = cli.Email; tbEndereco.Text = cli.Logradouro; tbEstado.Text = cli.Estado; tbNome.Text = cliPf.Nome; tbNomeMae.Text = cliPf.Nomemae; tbNomePai.Text = cliPf.Nomepai; tbNumero.Text = cli.Numero; tbRamal1.Text = cli.Ramal1; tbRamal2.Text = cli.Ramal2; tbRgIe.Text = cliPf.Rg; tbTelefone1.Text = cli.Telefone1; tbTelefone2.Text = cli.Telefone2; tbObs.Text = cli.Obs; cbxSituacao.Text = cli.Situacao; butAlterar.Enabled = true; butExcluir.Enabled = true; btnDebitos.Enabled = true; btnNovaVenda.Enabled = true; btnPagamentos.Enabled = true; butNovo.Focus(); } else if (cli.Cpf == "") { cliPj.Cnpj = cli.Cnpj; cliPj.ConsultarRegistro(); radPessoaJuridica.Checked = true; tbBairro.Text = cli.Bairro; tbCep.Text = cli.Cep; tbCidade.Text = cli.Cidade; tbCpfCnpj.Text = cliPj.Cnpj; tbEmail.Text = cli.Email; tbEndereco.Text = cli.Logradouro; tbEstado.Text = cli.Estado; tbNome.Text = cliPj.Razaosocial; tbApelido.Text = cliPj.Nomefantasia; tbNumero.Text = cli.Numero; tbObs.Text = cli.Obs; tbRamal1.Text = cli.Ramal1; tbRamal2.Text = cli.Ramal2; tbRgIe.Text = cliPj.Ie; tbTelefone1.Text = cli.Telefone1; tbTelefone2.Text = cli.Telefone2; cbxSituacao.Text = cli.Situacao; butAlterar.Enabled = true; butExcluir.Enabled = true; btnDebitos.Enabled = true; btnNovaVenda.Enabled = true; btnPagamentos.Enabled = true; butNovo.Focus(); } else { this.LimparCampos(); this.OrganizaBotoes(); } tbCodigoCliente.SelectAll(); } }