Hell Leonel,

Ok! Just wanted to make sure!...

I also noticed you changed my "If" statements to "while" statements.
Since I do not have a testing ground here, I do not know what will happen, if the program "Jumps" out of the middle of a while statement too many times.
I have had no problems jumping out of a "If" statement... but I am not sure about a while statement. So, I did not use while statements, for fear of crashing <g>.

Ralph, Steve, Melanie, Darrel, Bruce... Whats the answer???

Code:
Loop
a=1

  while a <100 
    .....
    if a==50 goto Loop
    ...
    a=a+1
  wend
....
goto Loop.
If a hits 50 a bunch of times, will this give PBP a problem and lose its stack? or run haywire? I know in some older versions of C/C++, it could cause a problem with memory...but I am not sure in PBP.

Dwayne