Try adding an indicator to the itteration counter (the "i" in the lower
left-hand corner of the for-loop). It might help if you change
the default value to something other than zero, as the first itteration
will have a value of zero. If it doesn't change at all, your
program is never making it to the for loop. If it counts very rapidly,
then it is something else.
Cheers.