Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Some Noob (to QB64) Questions
#4
You can use every pixel available to your screen without distortion from shrink or stretch with first line of following,

except the tool bar gets in way, maybe a widow always on top and centered too?

But try _Fullscreen from that, might not have distorion? Because 1 to 1 ratio screen to desktop. Do you get distortion?
Code: (Select All)
Screen _NewImage(_DesktopWidth, _DesktopHeight, 32) ' the 32 gives you millions of _RGB32( red, green, blue) colors
xmax = _Width
ymax = _Height
Print xmax, ymax, "zzz... sleeping press a key"
Sleep
_FullScreen
Print xmax, ymax, " IDK distortion?"
PSet (0, 0)
PSet (_Width - 1, _Height - 1)
Sleep

EDIT/UPDATE: better test, added 2 dots at the critical screen corners top left and bottom right should be visible.
b = b + ...
Reply


Messages In This Thread
Some Noob (to QB64) Questions - by TarotRedhand - 05-07-2022, 08:29 AM
RE: Some Noob (to QB64) Questions - by SMcNeill - 05-07-2022, 09:14 AM
RE: Some Noob (to QB64) Questions - by bplus - 05-07-2022, 03:34 PM
RE: Some Noob (to QB64) Questions - by bplus - 05-07-2022, 04:25 PM
RE: Some Noob (to QB64) Questions - by SMcNeill - 05-12-2022, 06:55 PM
RE: Some Noob (to QB64) Questions - by SMcNeill - 05-13-2022, 11:59 AM



Users browsing this thread: 1 Guest(s)