hello Roger
How can I get the data that is displayed using RunShell to be visualized on a CTR screen?
that is displaye RunShell AND CRT screen
that is displaye RunShell AND CRT screen
- Attachments
-
- Captura.JPG (171 KiB) Viewed 7976 times
Nolberto Paulino
Regards
Regards
Re: that is displaye RunShell AND CRT screen
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
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
greetings by OHR
Jimmy
Jimmy
Re: that is displaye RunShell AND CRT screen
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.
Runshell('/C','DIR > junk.txt')
Then you can load the contents of junk.txt into a GUI or CRT window.
The eXpress train is coming - and it has more cars.
Re: that is displaye RunShell AND CRT screen
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.
Nolberto Paulino
Regards
Regards