| Author |
BACKGROUND SCREEN COLORS FOR RM-COBOL/85
|
|
| diego.gda@gmail.com 2006-10-20, 6:55 pm |
| Hello to everybody. I am trying to develop a program with RM-COBOL/85
but I do not know how to make the whole screen change color! I know
how to change the color of specific displays, but not of the entire
screen. I would really appreciate if someone could help me by telling
me how.
Thanks in advance.
| |
| Frederico Fonseca 2006-10-20, 6:55 pm |
| On 20 Oct 2006 11:05:01 -0700, diego.gda@gmail.com wrote:
>Hello to everybody. I am trying to develop a program with RM-COBOL/85
>but I do not know how to make the whole screen change color! I know
>how to change the color of specific displays, but not of the entire
>screen. I would really appreciate if someone could help me by telling
>me how.
>Thanks in advance.
Please state compiler version, runtime version and OS used
Frederico Fonseca
ema il: frederico_fonseca at syssoft-int.com
| |
| d_gda@yahoo.com 2006-10-20, 6:55 pm |
| It is version 6 and I am running it in Windows.
| |
| Frederico Fonseca 2006-10-20, 6:55 pm |
| On 20 Oct 2006 12:16:43 -0700, "d_gda@yahoo.com" <diego.gda@gmail.com>
wrote:
>It is version 6 and I am running it in Windows.
full version please.
V6 can run in Windows mode or in DOS mode .
Frederico Fonseca
ema il: frederico_fonseca at syssoft-int.com
| |
| d_gda@yahoo.com 2006-10-20, 6:55 pm |
| MS-DOS mode... Thank you
| |
| Donald Tees 2006-10-20, 6:55 pm |
| diego.gda@gmail.com wrote:
> Hello to everybody. I am trying to develop a program with RM-COBOL/85
> but I do not know how to make the whole screen change color! I know
> how to change the color of specific displays, but not of the entire
> screen. I would really appreciate if someone could help me by telling
> me how.
> Thanks in advance.
>
Display space with background-color.
Donald
| |
| Frederico Fonseca 2006-10-20, 6:55 pm |
| On Fri, 20 Oct 2006 17:56:46 -0400, Donald Tees
<donald_tees@donald-tees.ca> wrote:
>diego.gda@gmail.com wrote:
>
>Display space with background-color.
>
>Donald
RM/COBOL does not have that keyword.
Way to do it is by using the CONTROL option of the DISPLAY.
eg.
display spaces line 1 position 1 erase eos
control "FCOLOR=BLUE, BCOLOR=WHITE"
where the valid colors are
Valid Color Names High-Intensity Color Values (Defaults)
Black Gray
Blue Light Blue
Green Light Green
Cyan Light Cyan
Red Light Red
Magenta Light Magenta
Brown Yellow
White High-Intensity White
Frederico Fonseca
ema il: frederico_fonseca at syssoft-int.com
| |
|
| thank you
Frederico Fonseca ha escrito:
> On Fri, 20 Oct 2006 17:56:46 -0400, Donald Tees
> <donald_tees@donald-tees.ca> wrote:
>
> RM/COBOL does not have that keyword.
>
> Way to do it is by using the CONTROL option of the DISPLAY.
>
> eg.
> display spaces line 1 position 1 erase eos
> control "FCOLOR=BLUE, BCOLOR=WHITE"
>
>
> where the valid colors are
>
> Valid Color Names High-Intensity Color Values (Defaults)
> Black Gray
> Blue Light Blue
> Green Light Green
> Cyan Light Cyan
> Red Light Red
> Magenta Light Magenta
> Brown Yellow
> White High-Intensity White
>
>
> Frederico Fonseca
> ema il: frederico_fonseca at syssoft-int.com
|
|
|
|