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.
  724  855  599  923  575  468  400  206  147  564  878  823  652  556 bxor cross forever
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

Possibly Related Threads…
Thread Author Replies Views Last Post
  Hardware images questions Dav 5 520 12-04-2025, 04:18 PM
Last Post: Pete
  A couple of loadimage questions. Pete 7 1,237 04-13-2025, 03:33 PM
Last Post: Kernelpanic
  $RESIZE questions TerryRitchie 8 2,077 06-07-2024, 03:38 PM
Last Post: TerryRitchie
  A couple questions about the dialogs.... Dav 20 4,365 10-14-2023, 04:00 PM
Last Post: TerryRitchie
  API Questions TerryRitchie 24 4,880 08-20-2023, 11:10 PM
Last Post: SpriggsySpriggs

Forum Jump:


Users browsing this thread: 1 Guest(s)