Got my money back from the fed/state and downloaded a copy of CC5.0. Glad to see I can get a reliable color rendition that CC4 didn't give me.
Been playing with it for about a week now and have some questions or maybe I just missed it in the docs.
1. Currently, to bring up a graphic window, one uses the syntax:
with a default background color of ?grey?
and then to color the window,
Is there any way of defaulting GRAPHIC WINDOW and not having to bother with GRAPHIC BOX to color the main box?
2. Is there a way to automatically minimize the console window or, better yet, just have it go away?
3. Not specific to this flavor of PB but it sure would be nice if PB supported:
This will be sent to support as a wish list item.
Been playing with it for about a week now and have some questions or maybe I just missed it in the docs.
1. Currently, to bring up a graphic window, one uses the syntax:
Code:
GRAPHIC WINDOW te$,sCol,sRow,eCol,eRow TO GraphicsWindow
and then to color the window,
Code:
GRAPHIC ATTACH GraphicsWindow, 0& GRAPHIC BOX (sCol,sRow)-(eCol,eRow), 0, %BLUE, %BLUE, 0
2. Is there a way to automatically minimize the console window or, better yet, just have it go away?
3. Not specific to this flavor of PB but it sure would be nice if PB supported:
Code:
var1, var2, var3 = 0 str1$, str2$, str3$ = ""
Comment