private void mkRg_Leave(object sender, EventArgs e) { var = new Valida(); if (var.validateRg(mkRg.Text) == true) { MessageBox.Show("Este Rg está incorreto, digite novamente!"); } }
private void mkCPF_Leave(object sender, EventArgs e) { var = new Valida(); if (!var.IsCpf(mkCPF.Text)) { MessageBox.Show("CPF Incorreto!"); } }
private void txtEmail_Leave(object sender, EventArgs e) { var = new Valida(); if (!var.validarEmail(txtEmail.Text) == true) { MessageBox.Show("Essa email é invalido!"); } }
private void mkCartao_Leave(object sender, EventArgs e) { var = new Valida(); if (var.IsCartao(mkCartao.Text)) { MessageBox.Show("Cartão valido"); } }
private void dtpCheck_in_ValueChanged(object sender, EventArgs e) { try { String data1 = dtpCheck_in.ToString(); var = new Valida(); if (!var.validarData(data1)) { MessageBox.Show("Essa data não pode ser usada!"); this.Focus(); } } catch (Exception erro) { MessageBox.Show("Erro: " + erro); } }