Hi Farfleet,
I read your original post again. If you have PFE, then run it. Make a file with the following contents, and save it as (say) test.for (use the trad fixed format for now, so statements start in column 7):
WINAPP
OPTIONS(INTL)
PROGRAM TEST
10 CONTINUE
WRITE(*,*) ' Hello World'
GO TO 10
END
Click on the icon to launch a DOS window. This opens with white text on a black background. Type:
FTN95 -LGO TEST.FOR
The program compiles, links and runs. Any compilation messages go into the DOS box. It will write ' Hello World' into yet another window. This will be black text on a white background.
Now edit TEST.FOR, taking out the WINAPP line. Compile and run (LGO means 'load and go'). Now, you have a pure console application. The 'Hello World' message will go into the DOS window, not into a separate console window!
Now put WINAPP back, and modify the file to read:
WINAPP
OPTIONS(INTL)
PROGRAM TEST
IA=WINIO@('%ca[Hello World]%bt[Exit]')
END
Compile and run that. It is a CLEARWIN+ application.
Now you are on your own with the on-line help file!
If you can get to Kingston upon Thames I'm at the Uni there, and would give you a further tutorial if you turned up when I'm free over the summer ...
Regards
Eddie