Code Comments
Programming Forum and web based access to our favorite programming groups.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.
Post Follow-up to this messageOn 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
Post Follow-up to this messageIt is version 6 and I am running it in Windows.
Post Follow-up to this messageOn 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
Post Follow-up to this messagediego.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
Post Follow-up to this messageOn 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
Post Follow-up to this messagethank 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
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.