Hi,
I need to validate a field, lets say, does not allow * character in a name.
You can try it modifying example 1
I add the following code to the Routines/Validate/Mailboxname
If Loc:Invalid <> '' then exit.
if instring('*',MAI:MailBoxName,1,1)>0
loc:Invalid = MAI:MailBoxName
loc:alert = 'MailBoxName:' & ' ' & p_web.Translate('you can''t use an * in the MailBoxName!')
END
But when you enter an * and press save, the upper red error line appears ok, but not the message box error.
Its weird because it is a required field and this validation is almost the same in the same place and the message box does appears.
What am I doing wrong?
Alberto