I've written a program making an assumption which I am now questioning.
My program runs a LOT of Windows commands via the SHELL command. When I do this, the output from many of these commands are not displayed to the program window. As a result, I have my program set to display all output to a console only ($CONSOLE:ONLY).
Just to make sure that I'm not making a totally incorrect assumption, is there any way that I can force the output from command line utilities to display in a QB64 program window?
The following one line program illustrates the issue:
SHELL "dism /?"
When $CONSOLE:ONLY is used then the help for the DISM command would be displayed to the console window, but without it, nothing is displayed.