QB64.org Forum

Active Forums => QB64 Discussion => Topic started by: Grizzly Adam on July 13, 2020, 03:53:14 pm

Title: Pop over window?
Post by: Grizzly Adam on July 13, 2020, 03:53:14 pm
Is there a simple way to make a window pop up over my main program and not have to reprint everything on the screen when it closes?

Legacy commands only, please. I am writing for quick basic in DOS.
Title: Re: Pop over window?
Post by: FellippeHeitor on July 13, 2020, 04:02:35 pm
Code: QB64: [Select]
  1. PCOPY 0, 1 'save image
  2. 'draw your window
  3. 'pause
  4. PCOPY 1, 0 'restore image
Title: Re: Pop over window?
Post by: Grizzly Adam on July 13, 2020, 06:06:14 pm
Wow, thanks!