public bool validacao() { bool cond = true; string erro = ""; if (txtrazaosocial.Text.Length == 0) { cond = false; erro += "Preencha o campo razão social \n"; } if (txtcep.Text.Length != 9) { cond = false; erro += "Preencha corretamente o cep\n"; } if (!Validador.ValidaCnpj(txtcnpj.Text)) { cond = false; erro += "Insira um cnpj válido\n"; } if (txtrua.Text.Length == 0) { cond = false; erro += "Preencha o campo rua \n"; } if (txtbairro.Text.Length == 0) { cond = false; erro += "Preencha o campo bairro\n"; } if (txtcidade.Text.Length == 0) { cond = false; erro += "Preencha o campo cidade\n"; } if (txtnumero.Text.Length == 0) { cond = false; erro += "Preencha o número do endereço \n"; } else { try { Convert.ToInt32(txtnumero.Text); } catch (Exception e) { cond = false; erro += "Insira um número do endereço válido\n"; } } if (!cond) { MessageBox.Show(erro, "Corrija os seguintes erros:", MessageBoxButtons.OK, MessageBoxIcon.Warning); } return(cond); }
public bool validacao() { bool cond = true; string erro = ""; if (txtnome.Text.Length == 0) { cond = false; erro += "Preencha o nome do cliente\n"; } if (txtcep.Text.Length != 9) { cond = false; erro += "Preencha corretamente o cep no endereço do cliente\n"; } if (!Validador.ValidaCPF(txtcpf.Text)) { cond = false; erro += "Insira um cpf válido\n"; } if (txtrua.Text.Length == 0) { cond = false; erro += "Preencha a rua no endereço do cliente\n"; } if (txtbairro.Text.Length == 0) { cond = false; erro += "Preencha o bairro no endereço do cliente\n"; } if (txtcidade.Text.Length == 0) { cond = false; erro += "Preencha a cidade no endereço do cliente\n"; } if (txtnumero.Text.Length == 0) { cond = false; erro += "Preencha o número residencial no endereço do cliente\n"; } else { try { Convert.ToInt32(txtnumero.Text); } catch (Exception e) { cond = false; erro += "Insira um número residencial válido\n"; } } if (!cond) { MessageBox.Show(erro, "Corrija os seguintes erros:", MessageBoxButtons.OK, MessageBoxIcon.Warning); } return(cond); }