Example #1
0
        public void HabilitaBotao()
        {
            Operacoes Op = new Operacoes();

            if (maskedTxtCPF.Text != "" && txtNome.Text != "" && maskedTxtRG.Text != "" && comboBoxEstadoCivil.Text != "" && Op.ValidaCPF(maskedTxtCPF.Text) == "O cpf é válido!")
            {
                buttonCadastrar.Enabled = true;
            }
            if (maskedTxtCPF.Text == "" || txtNome.Text == "" || maskedTxtRG.Text == "" || comboBoxEstadoCivil.Text == "" || Op.ValidaCPF(maskedTxtCPF.Text) == "CPF incorreto!")
            {
                buttonCadastrar.Enabled = false;
            }
        }
Example #2
0
        private void buttonValidar_Click(object sender, EventArgs e)
        {
            Operacoes Op = new Operacoes();

            Mensagem(Op.ValidaCPF(maskedTxtCPF.Text));
        }