Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - Using powerbuilder to set the background color, how to compare the data representing color with color?
Using powerbuilder to set the background color, how to compare the data representing color with color?
You can use RGB functions to modify colors in your code.

This number is a long integer, which is converted from three parameters of RGB function.

The conversion formula is long integer = parameter 3 * 65536+ parameter 2 * 256+ parameter 1.