Author Topic: Pop over window?  (Read 2629 times)

0 Members and 1 Guest are viewing this topic.

Offline Grizzly Adam

  • Newbie
  • Posts: 4
    • View Profile
Pop over window?
« 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.

FellippeHeitor

  • Guest
Re: Pop over window?
« Reply #1 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

Offline Grizzly Adam

  • Newbie
  • Posts: 4
    • View Profile
Re: Pop over window?
« Reply #2 on: July 13, 2020, 06:06:14 pm »
Wow, thanks!