making a text box

Please use this Board for QBasic related requests ( file research, programming, etc.)

Moderators:Administrator, Global Moderator

Post Reply
bravo1156
Newbie
Posts:1
Joined:Sat Jan 10, 2004 3:05 am
making a text box

Post by bravo1156 » Sat Jan 10, 2004 3:14 am

Ok I am making an rpg and I was wandering how to make a text pop up box that wont clear my screen. I want to also allow input statments to be put in there. Now I have tried to do this but i cant do it with out clearing the screen.

Guest

Re: making a text box

Post by Guest » Thu Jan 22, 2004 3:55 am

The first thing you should do is to get the background where you want your textbox to be created.
When you want the background to be displayed again just put the get(ed) picture at the same place where you get(ed) it before.

Like this:
dim background(1000) as integer
get (x1, y1)-(x2, y2), background
' put your textbox here
put (x1, y1)-(x2, y2), background, pset

Post Reply