Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_bgintense() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_BGINTENSE()

 DESCRIPTION

 C_BGINTENSE() provides the ability to access eight additional
 background colors in a Clipper program.  This is accomplished by
 turning the normal blinking attribute off and instead allowing high
 intensity background colors.

 NOTES

 All of the eight background colors have a high intensity color that
 can be used after C_BGINTENSE() is called.  The colors are then
 accessed the same way the blinking attribute on any color would be
 set.  For example, the dBASE/Clipper color string "R*/W" would set
 blinking red on a white background before calling C_BGINTENSE(),
 but would set red on a high intensity white background after
 calling C_BGINTENSE().

 This function can be used with a CGA, EGA, or VGA color adaptor.

 SYNTAX

 C_BGINTENSE(blink)

 PARAMETERS

 blink (L) indicates whether the blinking attribute should be on or
 off.  Specify true (.T.) to set the blinking attribute off and
 allow access to high intensity background colors.  Specify false
 (.F.) to set the blinking attribute on again.  The default setting
 is to set the blinking attribute on.

 RETURNS

 There is no return value.

 EXAMPLES

 s1 = "Line of Text on Screen"

 c_bgintense(.T.)   && Set blink off

 setcolor("W*/B")   && Set color to white on high intensity blue
 @ 10,1 say s1      && display text
 ...
 c_bgintense(.F.)   && Set blink on - color goes to blinking white
                    && on regular blue


See Also: C_SETNCOLOR() C_SETATTR() C_CHGATTR()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson