Hey, does anyone know how to change a color that is not the typical colors (yellow, blue, etc.)?
I'm trying the get my form to be the color of #506A96 (in HTML), but I'm unsure as to how to do it in a Form1.BackColor = ??? kinda way.
Printable View
Hey, does anyone know how to change a color that is not the typical colors (yellow, blue, etc.)?
I'm trying the get my form to be the color of #506A96 (in HTML), but I'm unsure as to how to do it in a Form1.BackColor = ??? kinda way.
check out the form properties window? :)
It the HTML color is in RGB format (I don't know if that is true)
then
Form1.BackColor=&H506A96
You can also use the Palette feature of the forms design window to get a color really close to the one you need.