03-18-2024, 12:34 PM
Updated (Thanks to RhoSigma's suggestion) to include toggles for the various PrintModes.
Text Previewer (windows only)
|
03-18-2024, 12:34 PM
Updated (Thanks to RhoSigma's suggestion) to include toggles for the various PrintModes.
03-25-2024, 02:47 AM
All I got out of this was Steve broke SHELL. When will that be fixed? Please don't go using chewing gum and twins... I mean twine.
Pete - I always look good in text.
03-25-2024, 11:54 AM
There have always been issues with SHELL in CONSOLE:ONLY vs regular window. I've just accepted them and found ways around them.
Tread on those who tread on you
(03-17-2024, 07:16 PM)SMcNeill Wrote: SHELL is broken.Run into this a lot. If it does not work, try adding "cmd /c " in front of your command That fixes is 99% of the time Code: (Select All)
45y and 2M lines of MBASIC>BASICA>QBASIC>QBX>QB64 experience
03-25-2024, 02:34 PM
The only 100% workaround that I've found is just to write the shell command into a batch file and then call it from there. Crazy, but it is what it is.
I found another SHELL that was almost impossible to deciper the other day. It was something like: foo print 123 > text.txt From the command line, it worked with no isses. From SHELL, it ended up having to be something like: SHELL chr$(34) + "powershell 'foo print 123' > text.txt" + CHR$(34) The entire powershell command had to be listed inside the single quotes, so it'd process as a single command, and then *everything* had to be encased in quotes so that CMD wouldn't break it apart into multiple, fractional calls to crap. Lord, the hoops to ump throug, for something so simple!! |
« Next Oldest | Next Newest »
|