Hi all,

Thank you all for your help. This post is an update for this thread. When giving the final touches to my program, I found out one more time that I was running out of programming memory space. Luckily, I was able to reduce the size of my program by almost 1K words . I don't know assembly so; this is how I did it.

Before, I was using only one variable I that was declared as a word for all my FOR I = ... NEXT I loops and whenever I needed a counter I = I + 1.

Code:
I VAR WORD
Sometimes the value of I went well over 255 but must of the times it didn't go over 255. So, I created a new variable J and declared it as a byte.

Code:
I VAR WORD
J VAR BYTE
I replaced J by I wherever it was possible and BINGO, the size of the program went down by almost 1K words.
Again, Thank you all for your help.


Robert