@DavidCorney wrote:
The value you are inputting is invalid, because it is too big. LabVIEW expects the RGB colors in the range 000000h (black) to FFFFFFh (white) and all combinations in between. The number you show in the screen shot is bigger, hence the error.
If you wan to experiment wire a color box control to a numeric indicator (U32) and set the display format for Hex.
Thank you....after playing around...I finally got it to work. ON the property, had to set the representation of my numerical constant (feeding into the color property of the numeric indicator) to I32 or U32 (is one better than the other for changing color properties?)
Then in the properties of the numeric constant...I found where to toggle between display format (hex or decimal).
I was getting confused between the representation, and the display format....I'm still a little confused, but I"m guessing the former is how the number is actually stored in memory...while the display just is that...you can display it any way you want, but that doesn't change how it is stored in memory and used programmatically...is that correct?
Also, for help in finding colors....I found a calculator that calculates the RGB for you....into hex.
That way, can use the color picker tool bar....find the RGB for the color I like, plug it into this, and it spits out the hex code. This page also has a chart showing colors and their accompanyin hex codes...which helps things out much faster!!
RGB to Hex Calculator
Anyway, thanks...I think I'm now on the path to being able to change properties programmatically.
C