how to do the coding to check the data (email address)that the first char must contain @ by using movel?
for example:
if user key in abc.yahoo.com
error massage will show
but if user key in @yahoo.com
the data is correct.
Software/Hardware used:
ASKED:
August 14, 2008 7:15 AM
UPDATED:
August 14, 2008 3:57 PM
If you have to use movel, (and you shouldn’t have to), then do a movel to a 1 character field and check it for the @ sign.
movel ‘@yahoo’ 1char
if 1char = ‘@’
– do something