Just have 2 more questions for today.

1. To open 1 file, I did this:
FileName = APP_ScriptPath + "test.txt" ' Build filename
FileHandle = FILE_Open (FileName, "OUTPUT")

If I wanted to open and write to 2 different files, how would I go about do this?

2. In the thinBasic help pdf, it said that the OR operator checks against 2 expressions. Can you check more than 2 expressions such as If x = 2 or 3 or 4 or 99 or 101 or 200 or 500 or 1000?

Thanks. Originally I was testing for the valid 50 states in the IF statement but it didn't work. (IF state = "AK" OR "AL" OR "AR" OR "AZ" etc. Didn't know about the underscore at that time for continuation.)