Page 1 of 1

that is displaye RunShell AND CRT screen

Posted: Wed Oct 24, 2018 1:04 pm
by digitsoft
hello Roger
How can I get the data that is displayed using RunShell to be visualized on a CTR screen?

Re: that is displaye RunShell AND CRT screen

Posted: Wed Oct 24, 2018 1:40 pm
by Auge_Ohr
hi,

RunShell use a different Instance so you have no access in GUI.

in VIO Mode you can try SAVE SCREEN -> cString where even 2nd Sign is a Attribute

you also can try to redirect to Clipboard

Code: Select all

DIR *.* | CLIP

Re: that is displaye RunShell AND CRT screen

Posted: Wed Oct 24, 2018 2:18 pm
by rdonnay
You could send the Command window output to a file like so:

Runshell('/C','DIR > junk.txt')

Then you can load the contents of junk.txt into a GUI or CRT window.

Re: that is displaye RunShell AND CRT screen

Posted: Wed Oct 24, 2018 3:01 pm
by digitsoft
Thank you
rdonnay wrote:You could send the Command window output to a file like so:

Runshell('/C','DIR > junk.txt')

Then you can load the contents of junk.txt into a GUI or CRT window.