Thanks a lot, Phil. Your handler is as fast as lightning.

I've had to add a line of code to replace quotes since they still showed in the 
fld:

repeat for each line tLine in tText
     if """ is in tLine -- this line contains a quote
     then -- make the text red
        put "<font color=#FF0000>" after char 3 of tLine -- after "<p>"
        put "</font>" before char -4 of tLine -- before "</p>"
     end if
     replace "&quot;" with empty in tLine  --line added by me
     put tLine & cr after tNewText
  end repeat

I am really very grateful.

Best regards,

Ton
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to