Announcement

Collapse
No announcement yet.

Some questions on CC5.0

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Some questions on CC5.0

    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:
    Code:
    GRAPHIC WINDOW te$,sCol,sRow,eCol,eRow TO GraphicsWindow
    with a default background color of ?grey?

    and then to color the window,
    Code:
        GRAPHIC ATTACH GraphicsWindow, 0&
        GRAPHIC BOX (sCol,sRow)-(eCol,eRow), 0, %BLUE, %BLUE, 0
    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:
    Code:
    var1, var2, var3 = 0
    str1$, str2$, str3$ = ""
    This will be sent to support as a wish list item.
    Last edited by Mel Bishop; 1 Feb 2009, 12:25 AM.
    There are no atheists in a fox hole or the morning of a math test.
    If my flag offends you, I'll help you pack.

  • #2
    GRAPHIC CLEAR [rgbColor& [, fillstyle&]] in pb/win9.0 set the background color to rgbColor&
    I`m German, and my English is very bad

    Comment


    • #3
      #1

      Code:
         
      GRAPHIC COLOR foreground& , background&
      GRAPHIC CLEAR
      #2

      Code:
        
      #Console Off
      #3

      Code:
        
      RESET variable [, ...]
      Arie Verheul

      Comment

      Working...
      X