private void txtWeb_Validating(object sender, CancelEventArgs e) { if (txtWeb.Text != "" && !Validaciones.CompruebaWeb(txtWeb.Text)) { Mensajes.MostrarMensajesError("Dirección web incorrecta"); txtWeb.SelectAll(); txtWeb.Focus(); } }