Howdy,
I'd like to set the BackColor of my PictureBox control when I've got the R,G, and B (0-255) values.
Anyone know how I go about doing that?
Thanks!
-Ben
Printable View
Howdy,
I'd like to set the BackColor of my PictureBox control when I've got the R,G, and B (0-255) values.
Anyone know how I go about doing that?
Thanks!
-Ben
try
[your control ].backcolor=system.drawing.color.FromArgb(red,green,blue)
Thanks! That works perfectly.
--Ben