If this was answered in another earlier post, I apologize. I can't seem to find it.
In porting my code to 64-bit, this is one of the items that didn't 'port well'.
After my code starts, I create a %cw inside of my main window so appropriate status messages can show up. The existing code just won't do it.
The code is:
call childwindow_setup(' ',child) ! this makes the basic ClearWin window for output capture
i = winio@('%ob[bottom_exit,line_colour]&',rgb@(255,69,0))
i = winio@('%120.35cw[hscroll,vscroll]&',0) ! attach to unit=0 to grab the output and direct it here
i = winio@('%cb&')
i = winio@('%ac[CTRL+C]&','COPY') ! attach the CTRL-C to this window
call child_complete_nohelp
I think I'm missing some important step in here.
Bill