Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Text.RegularExpressions;
- using System.Windows.Forms;
- namespace R717ValidarEntradaControl
- {
- public partial class Principal : Form
- {
- public Principal()
- {
- InitializeComponent();
- }
- private void btnEnviar_Click(object sender, EventArgs e)
- {
- string mensajeError = string.Empty;
- bool invalidaEntrada = false;
- foreach (Control control in Controls)
- {
- if (!erpValidarEntrada.GetError(control).Equals(String.Empty))
- {
- mensajeError += " * " + erpValidarEntrada.GetError(control) + "\n";
- invalidaEntrada = true;
- }
- }
- if (invalidaEntrada)
- {
- MessageBox.Show("El formulario contiene errores: \n\n" + mensajeError,
- "Datos Inválidos", MessageBoxButtons.OK, MessageBoxIcon.Warning);
- }
- else
- {
- Close();
- }
- }
- private void txtEmail_Leave(object sender, EventArgs e)
- {
- Regex regex = new Regex(@"^[\w-]+@([\w-]+\.)+[\w-]+$");
- Control control = (Control) sender;
- if (String.IsNullOrEmpty(control.Text) || regex.IsMatch(control.Text))
- {
- erpValidarEntrada.SetError(control, "");
- }
- else
- {
- erpValidarEntrada.SetError(control, "Email inválido.");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement