Hi, JDerson,

Look at your program! The program goes through the initialization part then hits END. There is NOTHING that I see that tells the program to got to MAIN except at the end of the MAIN loop. You need to have a line before the END statement that says GOTO MAIN. Then the program will got the Main routine and just continually loop through the MAIN routine until you manually stop the program.

BobK