Posts: 16
Threads: 8
Joined: Oct 2022
Reputation:
0
I was wondering if it is somehow possible to enlarge the window for older BAS programs?
Such as ones that use those older screen modes such as SCREEN 7.
When i run them, the window is quite small, playable, but small.
Posts: 513
Threads: 65
Joined: May 2022
Reputation:
83
Hi. Try _FullScreen, or Alt + Enter after run.
Posts: 4,698
Threads: 222
Joined: Apr 2022
Reputation:
322
12-24-2025, 07:32 PM
(This post was last modified: 12-24-2025, 07:44 PM by bplus.)
Yes you can now create custom sized screens
Screen _NewImage(myScreenWidthPixels%, myScreenHeightPixels%, MyColorPallet%)
MyColorpallet% = 12, 256, 32
12 is 16 color old QB colors
256 is pallet stuff I dont use so cant describe well
32 is millions of color options using _RGB32(r, g, b, alpha)
Oh yes! for old programs use Petr's suggestion but you might need a little _Delay after Screen statement before going full screen.
warning: you may experience some distortion of circles and squares.
724 855 599 923 575 468 400 206 147 564 878 823 652 556 bxor cross forever
Posts: 3,447
Threads: 376
Joined: Apr 2022
Reputation:
345
$RESIZE:STRETCH
$RESIZE:SMOOTH
Add either of those commands to the top of your program and you can grab and resize the window to whatever size you want once compiled.