Results 1 to 2 of 2

Thread: [RESOLVED] validate email addresess with regular expressions

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Aug 2005
    Location
    Wisconsin
    Posts
    788

    Resolved [RESOLVED] validate email addresess with regular expressions

    How can I validate an email address when it is entered in a text box?

  2. #2
    Oi, fat-rag! bushmobile's Avatar
    Join Date
    Mar 2004
    Location
    on the poop deck
    Posts
    5,592

    Re: validate email addresess with regular expressions

    Something like this perhaps?
    VB Code:
    1. Private Sub Text1_Validate(Cancel As Integer)
    2.     Cancel = Not Text1.Text Like "*?@?*.?*"
    3. End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width