Is there anyway to check if your program is running out of memory while running?.
I've got a program that seems to work the first time round the loop but not any subsequent times. I've checked for any variables that may have been changed the first time that are affecting it but I can't spot any which is making me think it may be the memory?
Search the forum for "Free Memory". There is a way to determine the available memory. The memory that your program uses should not change as it runs, unless you are dynamically allocating space or performing recursive calls.