I am writing a program which generates quite some logging info which I like to write into a dedicated window using a unit pointing to that window via
call OPEN_TO_WINDOW@(7,5)
The main program window is opened as a frame
iAns=winio@('%pv%fr&',1400L,800L)
And I have managed to open graphics windows and route graphics output into those windows, using the following code
! Open window for logging text iHndLog = 5 iAns=winio@('%ca[Log output]%bg[grey]&') ians=winio@('%pv%aw&',iCtrl) ians=winio@('%`gr[white]', 800, 600, iHndLog)
Could someone please enlighten me how to open a text window which than can be written into via unit 7 using the above call OPEN_TO_WINDOW@(7,5)
Cheers,