Here's the best solution I've got so far. This results in a titled console window at 80x25 characters that can not be resized to a larger size. Obviously this solution is for a Windows machine only
test.pb Code: Select all
; open a graphical console
OpenConsole()
EnableGraphicalConsole(1)
; set fore and background to same to hide text output
ConsoleColor(1,1)
ClearConsole()
; sets width, height and window title
RunProgram(".\test.bat","","",#PB_Program_Wait)
; white on blue text
ConsoleColor(15,1)
ClearConsole()
Print("Hit RETURN >")
Input()
CloseConsole()
test.bat Code: Select all
title My Software Title
mode con lines=25 cols=80
Not an ideal solution but it works! There's probably some Windows function call to do this, but I can't find one.
I can't see any way of changing the font size except for right clicking the title bar.