Trying to create output from the Fortran run where the text is black and the background is white. Current default is background black, text white, too hard to read. Looked at the call winio routine defs but cannot seem to get the correct configuration, any ideas will help, Sid Kraft
Fortran Output Color
3 Dec 2018 12:12
#22903
3 Dec 2018 7:36
#22905
If you have a simple Fortran program using standard PRINT or WRITE statements (i.e. that does not use explicitly use ClearWin+) then you can put the WINAPP directive before the main program to get the effect that you want.
For example:
WINAPP
PROGRAM main
PRINT*, 'Hello'
END
There are come caveats but give it a try.
Please login to reply.