SCREEN

General FreeBASIC programming questions.
Post Reply
albert
Posts: 6000
Joined: Sep 28, 2006 2:41
Location: California, USA

SCREEN

Post by albert »

If i have a both a console and a graphics screen opened..

How do i close the graphic screen?
I need to open and close graphics screens based on user input..

There's no "ScreenOpen" or "ScreenClose" functions..
sancho3
Posts: 358
Joined: Sep 30, 2017 3:22

Re: SCREEN

Post by sancho3 »

Screen 0

Code: Select all

Screenres 800, 600

Getkey

Screen 0 
Print "hello"
Getkey
albert
Posts: 6000
Joined: Sep 28, 2006 2:41
Location: California, USA

Re: SCREEN

Post by albert »

@sancho3

Thanks , that worked just fine...

querry solved!!
Post Reply