Jump to content

Check us out: Google+



Welcome to dEViATED Game Trainers and Gamehacking forum - Have a look around and see if you like a trainer from our vast collection for many new games and old alike.

You might be interested in our trainers for these new games
Dead Space 3 Trainer
DMC Devil May Cry Trainer
Aliens Colonial Marines Trainer
Tomb Raider Trainer
Crysis 3 Trainer
Resident Evil 6 Trainer

Photo
- - - - -

Check Email if gmail and valid password length


  • Please log in to reply
No replies to this topic

#1 Thatskie

Thatskie

    Tamed

  • Full Members
  • PipPipPip
  • 44 posts

Posted 12 May 2011 - 01:39 PM

Check Email if gmail and valid password length.

Screenshot:
Posted Image

Public Class Form1

    Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
        checkemail(TextBox1.Text, TextBox2.Text)
    End Sub

    Private Shared Function checkemail(ByVal email As String, pass As String) As Boolean
        If isemailvalid(email) = True Then
            If isgmail(email) = True Then
                If validpass(pass) = True Then
                    MsgBox("Valid gmail and valid password Length!")
                    ' Do valid processing here!

                Else
                    MsgBox("Invalid Password Length!")
                End If
            Else
                MsgBox("Not a valid gmail account")
            End If
        Else
            MsgBox("Invalid Email")
        End If
    End Function

    Private Shared Function isemailvalid(ByVal email As String) As Boolean
        ' If the email matches the regular expression
        Dim Expression As New System.Text.RegularExpressions.Regex("\S+@\S+\.\S+")
        If Expression.IsMatch(email) Then
            Return True
        Else
            Return False
        End If
    End Function

    Private Shared Function isgmail(ByVal email As String) As Boolean
        If email.Contains("@gmail.com") = True Then
            Return True
        Else
            Return False
        End If
    End Function

    Private Shared Function validpass(ByVal pass As String) As Boolean
        If pass.Length >= 8 Then
            Return True
        Else
            Return False
        End If
    End Function
End Class

This code might be useful for validating email address, and for simple email sender/bomber.



Affiliates: