I am outputting some results using print *, - there seems to be a limit of only around 300 lines that the dos-like output box will show. Is there a way to increase that to (say) 1,000 lines? Thanks
Keep more print output
This is a cmd.exe issue. Right click on the top title band of the dos box, select properties then layout. Change the screen buffer height.
Alternatively run your program to a file and look at the file when complete, using: program.exe > output notepad output
You need to learn about redirecting using > >> and <
John
Or write
out = create_window@('Info',100,100,700,500)
call open_to_window@(6,out)
before beginning with the output, use
write(6,...)
for the output, and
call destroy_window@(out)
at the end of your (sub-)program. 'out' is an integer*4 variable.
Wilfried
Hi John, a belated thanks for your advice, which was great & all I needed. Belated because I didn't get an email notification. If there is an issue could someone let me know? Either way if someone replies I will check back here ....