예제 #1
0
        private void Txt_CEP_Leave(object sender, EventArgs e)
        {
            string vCep = Txt_CEP.Text;

            if (vCep != "")
            {
                if (vCep.Length == 8)
                {
                    if (Information.IsNumeric(vCep))
                    {
                        var      vJson = Cls_Uteis.GeraJSONCEP(vCep);
                        Cep.Unit CEP   = new Cep.Unit();
                        CEP = Cep.DesSerializedClassUnit(vJson);
                        Txt_Logradouro.Text = CEP.logradouro;
                        Txt_Bairro.Text     = CEP.bairro;
                        Txt_Cidade.Text     = CEP.localidade;

                        Cmb_Estados.SelectedIndex = -1;
                        for (int i = 0; i <= Cmb_Estados.Items.Count - 1; i++)
                        {
                            var vPos = Strings.InStr(Cmb_Estados.Items[i].ToString(), "(" + CEP.uf + ")");
                            if (vPos > 0)
                            {
                                Cmb_Estados.SelectedIndex = i;
                            }
                        }
                    }
                }
            }
        }
        private void Btn_Valida_Click(object sender, EventArgs e)
        {
            string vConteudo;

            vConteudo = Msk_CPF.Text;
            vConteudo = vConteudo.Replace(".", "").Replace("-", "");
            vConteudo = vConteudo.Trim();
            if (vConteudo == "")
            {
                MessageBox.Show("Você deve digitar um CPF", "Mensagem de Validação", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            else
            {
                if (vConteudo.Length != 11)
                {
                    MessageBox.Show("CFP deve ter 11 dígitos", "Mensagem de Validação", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
                else
                {
                    if (MessageBox.Show("Você deseja realmente validar o CPF?", "Mensagem de Validação", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                    {
                        bool validaCPF = false;
                        validaCPF = Cls_Uteis.Valida(Msk_CPF.Text);
                        if (validaCPF == true)
                        {
                            MessageBox.Show("CPF VÁLIDO", "Mensagem de Validação", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        }
                        else
                        {
                            MessageBox.Show("CPF INVÁLIDO", "Mensagem de Validação", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        }
                    }
                }
            }
        }
예제 #3
0
 private void txtCEP_Leave(object sender, EventArgs e)
 {
     if (txtCEP.Text != "")
     {
         if (txtCEP.Text.Length == 8)
         {
             if (Information.IsNumeric(txtCEP.Text))
             {
                 var vJson = Cls_Uteis.GeraJSONCEP(txtCEP.Text);
                 var CEP   = new Cep.Unit();
                 CEP = Cep.DesSerializedClassUnit(vJson);
                 txtLogradouro.Text       = CEP.logradouro;
                 txtCidade.Text           = CEP.localidade;
                 txtComplemento.Text      = CEP.complemento;
                 txtBairro.Text           = CEP.bairro;
                 cbbEstados.SelectedIndex = -1;
                 for (int i = 0; i <= cbbEstados.Items.Count - 1; i++)
                 {
                     var vPos = Strings.InStr(cbbEstados.Items[i].ToString(), $"({CEP.uf})");
                     if (vPos > 0)
                     {
                         cbbEstados.SelectedIndex = i;
                         break;
                     }
                 }
             }
         }
     }
 }
예제 #4
0
        private void Btn_Valida_Click(object sender, EventArgs e)
        {
            var validaCPF = false;

            validaCPF = Cls_Uteis.Valida(Msk_CPF.Text);
            if (validaCPF == true)
            {
                Lbl_Resultado.Text      = "CPF Válido";
                Lbl_Resultado.ForeColor = Color.Green;
            }
            else
            {
                Lbl_Resultado.Text      = "CPF Inválido";
                Lbl_Resultado.ForeColor = Color.Red;
            }
        }
예제 #5
0
        private void Btn_Valida_Click(object sender, System.EventArgs e)
        {
            string vConteudo;

            vConteudo = Msk_CPF.Text;
            vConteudo = vConteudo.Replace(".", "").Replace("-", "");
            vConteudo = vConteudo.Trim();


            if (vConteudo == "")
            {
                MessageBox.Show("CPF não contém texto!", "Mensagem de Validação", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            else if (vConteudo.Length != 11)
            {
                MessageBox.Show("CPF não está completo!", "Mensagem de Validação", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            else
            {
                if (MessageBox.Show
                        ("Você deseja realmente validar o CPF?",
                        "Mensagem de Validação",
                        MessageBoxButtons.YesNo,
                        MessageBoxIcon.Question) == DialogResult.Yes)
                {
                    bool validaCPF = false;
                    validaCPF = Cls_Uteis.Valida(Msk_CPF.Text);
                    if (validaCPF == true)
                    {
                        MessageBox.Show("CPF Válido!", "Mensagem de Validação", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    }
                    else
                    {
                        MessageBox.Show("CPF Inválido!", "Mensagem de Validação", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    }
                }
            }
        }
        private void Txt_CEP_Leave(object sender, EventArgs e)
        {
            string vCEP = Txt_CEP.Text;

            if (vCEP != "" && vCEP.Length == 8 && Information.IsNumeric(vCEP))
            {
                var vJson = Cls_Uteis.GeraJSONCEP(vCEP);
                var Cep   = CEP.DeserializedClassUnit(vJson);

                Txt_Logradouro.Text = Cep.Logradouro;
                Txt_Bairro.Text     = Cep.Bairro;
                Txt_Cidade.Text     = Cep.Localidade;

                Cmb_Estados.SelectedIndex = -1;
                for (int i = 0; i < Cmb_Estados.Items.Count - 1; i++)
                {
                    if (Strings.InStr(Cmb_Estados.Items[i].ToString(), $"({Cep.UF})") > 0)
                    {
                        Cmb_Estados.SelectedIndex = i;
                        return;
                    }
                }
            }
        }
예제 #7
0
        private void conectarToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Frm_Login f = new Frm_Login();

            if (f.ShowDialog() == DialogResult.OK)
            {
                string login = f.login;
                string senha = f.senha;

                if (Cls_Uteis.ValidaSenhaLogin(senha) == true)
                {
                    novoToolStripMenuItem.Enabled        = true;
                    apagarAbaToolStripMenuItem.Enabled   = true;
                    abrirImagemToolStripMenuItem.Enabled = true;
                    desconectarToolStripMenuItem.Enabled = true;
                    conectarToolStripMenuItem.Enabled    = false;
                    MessageBox.Show($"Bem vindo {login}!", "Mensagem", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                else
                {
                    MessageBox.Show($"Senha inválida!", "Mensagem", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
        }