The following program should create a window with a yellow background with FTN95, but in version 9.10 (and I think starting in version 9.05) the colour is no longer identified. I am aware that I am using routines ending in $. I do this because I am trying to use the code with other compilers, and in that case the program does produce the correct background colour.
The program also fails to switch off the cursor waiting status.
Winapp
Program cpt
Use clrwin$, Only: rgb$, set_cursor_waiting$, winio$
Integer :: icbg, iw
!
icbg = rgb$( 255, 255, 0 )
Call set_cursor_waiting$ ( 1 )
iw = winio$( '%za&' )
iw = winio$( '%bg&', icbg )
iw = winio$( '%ca@&', 'TEST' )
Call set_cursor_waiting$ ( 0 )
iw = winio$( '%zz' )
End Program cpt