CompuServe Archive

This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.

Search Results (4 messages)

#25632 Basic Windows Message #25639
From: John Chen Forum unknown · Programming July 6, 1986 5:10 PM
Hi. If you set the type/mode number in the window statement to an odd number, then you have a sizing gadget that reduces the window size you can have (I forget how much).
#25632 Basic Windows Message #25639
From: John Chen Forum unknown · Programming July 6, 1986 5:10 PM
Hi. If you set the type/mode number in the window statement to an odd number, then you have a sizing gadget that reduces the window size you can have (I forget how much).
#25186 #Basic Windows Message #25586
From: John Chen Forum unknown · Programming July 6, 1986 12:47 PM
Try this (it works on my Amiga): Top: SCREEN 1,640,400,2,4 WINDOW 2,"Interlace",(1,1)-(630,380),30,1 DoSomething: CIRCLE (180,120),50 PAINT (180,120) GetKey: WHILE a$="" a$=INKEY$ WEND EndIt: WINDOW CLOSE 2 SCREEN CLOSE 1 END Maybe you opened a window that was too large for the screen? I hope this helps!
#25186 #Basic Windows Message #25586
From: John Chen Forum unknown · Programming July 6, 1986 12:47 PM
Try this (it works on my Amiga): Top: SCREEN 1,640,400,2,4 WINDOW 2,"Interlace",(1,1)-(630,380),30,1 DoSomething: CIRCLE (180,120),50 PAINT (180,120) GetKey: WHILE a$="" a$=INKEY$ WEND EndIt: WINDOW CLOSE 2 SCREEN CLOSE 1 END Maybe you opened a window that was too large for the screen? I hope this helps!