Rene,
Apologies - the Informix reference was very vague - but I was talking about 15+ years back (I can't even recall the 4gl version) - not any recent version (I don't think I'm going mad either as I did google page length 0 and found posts on the IIUG (
http://www.iiug.org/forums/classics/index.cgi/noframes/read/1573) and 'elsewhere' infering that certain version of 4gl did have a similar 'feature' (or bug!) (
http://www.databaseteam.org/6-informix/6931fb85106c3371.htm).
Anyway, this 'tester' code is all that is required to produced the attached output (this is not the full 1.3MB of the output - but the dates simply repeat with no spacing until the 'trailer' text) under BDS 3.55.01.40. Ignore the dialog bit - I was using that to show the effect of INT_FLAG.
MAIN
DEFINE l_char CHAR(1),
l_i INTEGER
WHENEVER ANY ERROR CONTINUE
START REPORT r_report TO PRINTER
FOR l_i = 1 TO 70000
OUTPUT TO REPORT r_report(TODAY+l_i)
END FOR
FINISH REPORT r_report
LET INT_FLAG = FALSE
DISPLAY '(',FGL_GETRESOURCE('gui.uiMode'),')'
WHILE TRUE
MENU 'Hello'
COMMAND 'One' 'Command One'
DISPLAY 'One'
COMMAND 'Two' 'Command Two'
DISPLAY 'Two'
COMMAND KEY(F5)
DISPLAY 'F5 Pressed'
END MENU
DISPLAY 'INT_FLAG (',INT_FLAG,')'
END WHILE
END MAIN
REPORT r_report(p_date)
DEFINE p_date DATE
OUTPUT
LEFT MARGIN 0
RIGHT MARGIN 0
TOP MARGIN 0
BOTTOM MARGIN 0
PAGE LENGTH 0
FORMAT
FIRST PAGE HEADER
PRINT 'This is a file extract'
ON EVERY ROW
PRINT COLUMN 1,'Date ', p_date USING 'dd mmm yyyy'
ON LAST ROW
PRINT 'Thie is the end of the data'
END REPORT
As I was saying to Seb on the INT_FLAG front, if there is no equivalent in Genero, then that is no great issue - I just thought that I had missed settings. The project here is running on a 2.4 release anyway and needs to be in within the next two months, so there's no time to wait for a leter release of Genero - and I think I can get around the issue by individually working each report's layout that has this 'feature'.