Hi, waitz,
here is a different approach.
Use the function strpos.
Search for the character. If it is there -> false.
So enter in the question validation equation: !strpos(self,'"') (your search character, double quote, surrounded by single quotes)
Remember: This function returns false if the string is not found, otherwise the position.
So we look for the "false" result of the function.
In the tip you can enter something like:
{if(!strpos(self,'"'),"","No quotes allowed")}
Joffm