How do you make the output window or the graph screen full screen or switch places from BASIC?
How to resize screen in BASIC
Started by
qwerty841
, Jan 19 2004 06:59 PM
2 replies to this topic
#1
Posted 19 January 2004 - 06:59 PM
#2
Posted 19 January 2004 - 10:07 PM
there is no good way to do this at the moment, the only way to have the scren be at full size is to use Pause and prompt the user to click the resize button. on the graph screen you can test if it is in full size or not with something like:
PxlOn 1,1
StrPict tmp
Lbl test
Message "please maximise the graph screen"
RclPict tmp
if PxlTest(1,1)<>0
Then
Goto test
IfEnd
PxlOn 1,1
StrPict tmp
Lbl test
Message "please maximise the graph screen"
RclPict tmp
if PxlTest(1,1)<>0
Then
Goto test
IfEnd
#3
Posted 20 January 2004 - 10:19 AM
Do
Message "Click on RESIZE then on |>"
ViewWindow 1,155,0,51,127,0
Text 1,1,"" // to activate the graph screen (i want a full graph screen)
Pause // user must resize the screen here
PlotOn 1,177
If pxlTest(1,1)=1
Then:Break
IfEnd
Message "You haven't resized the screen","ERROR"
LpWhile 1
Message "Click on RESIZE then on |>"
ViewWindow 1,155,0,51,127,0
Text 1,1,"" // to activate the graph screen (i want a full graph screen)
Pause // user must resize the screen here
PlotOn 1,177
If pxlTest(1,1)=1
Then:Break
IfEnd
Message "You haven't resized the screen","ERROR"
LpWhile 1
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users