Silverfrost Forums

Welcome to our forums

Keep more print output

30 Mar 2015 11:52 #16052

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

30 Mar 2015 11:58 #16053

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

31 Mar 2015 7:19 #16055

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

9 Jun 2015 2:03 #16454

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 ....

Please login to reply.