![]() |
When did CONSOLE break? - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: Chatting and Socializing (https://qb64phoenix.com/forum/forumdisplay.php?fid=11) +--- Forum: General Discussion (https://qb64phoenix.com/forum/forumdisplay.php?fid=2) +--- Thread: When did CONSOLE break? (/showthread.php?tid=3589) |
When did CONSOLE break? - Sprezzo - 04-06-2025 https://qb64phoenix.com/qb64wiki/index.php/$CONSOLE Example 1: Code: (Select All)
_CONSOLE OFF does not hide the console in bird edition. Needless to say no idea if _CONSOLE ON would toggle it back on. It all works in 2.1. Tested Win11 only. RE: When did CONSOLE break? - DSMan195276 - 04-06-2025 I think it's just an IDE thing, it now runs console programs using `cmd /c`, that's probably a bug since Windows will launch you a console anyway (and when the program attaches to an existing console it can't hide it). The `cmd /c` is still necessary to make the logging cmd appear but that's only necessary if you have 'display logging' turned on. Regardless, if you run the program directly from explorer then it should work as expected with the console window hiding, so the program itself is fine. RE: When did CONSOLE break? - Sprezzo - 04-06-2025 Yep that was it, you da (ds)man. |