FUNL0045 Loop control variable already in use.

From m204wiki
Revision as of 16:50, 9 November 2010 by 198.242.244.47 (talk) (Created page with "A FOR statement was encountered inside of a FOR clause which used the same loop control variable. An example of this is a '''FOR A FROM ...''' occurring inside of a '''FOR A FROM...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A FOR statement was encountered inside of a FOR clause which used the same loop control variable. An example of this is a FOR A FROM ... occurring inside of a FOR A FROM ... clause. Correct the inner or outer loop to use a different loop control variable to eliminate the conflict.