Console width/height

Need an option to set width/height of the console window that is created when compiling as a console application. Not being able to set this is very annoying and borderline not usable with long text strings on the screen.

To answer my own question (mainely for others, not myself), you can do this with:

shell_exec(“mode con:cols=80 lines=40”); from within the application whenever you need to change the width/height of the screen. So what is missing is the DEFAULT width/height setting.

Thank you for your feedback! :wink: