I'm trying to copy and paste from a Clearwin window (an ordinary Fortran output stream) but it's very unreliable.
opening window with ---
wcaption = 'VMINE DEVELOPMENT VERSION '//verno//' '//verdate
kkk = winio@('%ww[casts_shadow]%lw&',ictrl)
kkk = winio@('%ca@&',wcaption)
kkk = winio@('%mn[Copy]&','COPY')
kkk = winio@('%pv%`100.25cw[hscroll,vscroll]&',idsply,ihndcw)
kkk = winio@('%ac[Ctrl+C]','COPY')
call set_max_lines@ (ihndcw,100000)
kkk = set_default_window@ (ihndcw)
writing Fortran standard stream to it (on LUN idsply)...
then I want to copy and paste some the output elsewhere (usually into Notepad)
and finally I close the window with
ictrl = 1
call window_update@(ictrl)
What am I doing wrong? I select the section I want. Sometimes it copies one character or one line from the selection, sometimes more.
CTRL/C seems to work better than COPY from the menu item, but whether either of them works is completely unpredictable.
Help!!