Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

nested REPEAT loops 1

Status
Not open for further replies.

rollim

Technical User
Mar 18, 2003
4
DE
Hi,

is it possible to nest REPEAT loops in WebFocus. I tried but i got useless error-messages. In the manual there is only an example for simple REPEAT loops. Has anybody an example for nested REPEAT loops.

Thanks a lot,
Roland
 

Roland,

The simple example:
Code:
-REPEAT :OUTER FOR &VAR FROM 1 TO 10;
-TYPE &VAR
-REPEAT :INNER FOR &VAR1 FROM 1 TO 3;
-TYPE --> &VAR1
-:INNER
-:OUTER;
works for me. What is your code ?

Regards
Grzegorz
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top