Hi,
Both are equally fine.CASE works with a value and not with strings but you can use the ASCII value.
So CASE "1" should be CASE 49
and CASE "A" should be CASE 65
CASE "A", CASE 65, CASE $41, CASE %01000001 all works and does the exact same thing.
/Henrik.
Bookmarks