private void txtCurp_Leave(object sender, EventArgs e)
 {
     if (ValidacionesTXT.ValidarCurp(txtCurp.Text))
     {
     }
     else
     {
         MessageBox.Show("Curp No Valida,Debe de tener el formato : VAAF900124HSRLNR08, " +
                         "Ingrese Curp Valida", "Validacion De Curp", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
         txtCurp.SelectAll();
         txtCurp.Focus();
         txtCurp.Text = "VAAF900124HSRLNR08";
     }
 }