How do I look at a text box and make sure it contains only one "@" and at least one "." (some emails have more than one "." but all emails can only contain one "@"
Pseudo code:
Look at Text1
If it contains only 1 "@" and at least 1 "." then
MsgBox "Valid"
If it does not meet both of these criteria then
MsgBox "Not Valid"
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
-- Rich Cook.
Pseudo code:
Look at Text1
If it contains only 1 "@" and at least 1 "." then
MsgBox "Valid"
If it does not meet both of these criteria then
MsgBox "Not Valid"
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
-- Rich Cook.
