T Tom Sep 16, 2004 #1 is it possible to specify a custom color code say #6E92GD for bg in winform ? Thanks Tom
M Morten Wennevik Sep 16, 2004 #2 Hi Tom, You can use any color you like. You will need to change the text into the individual red green and blue int values. this.BackColor = Color.FromArgb(123, 234, 23);
Hi Tom, You can use any color you like. You will need to change the text into the individual red green and blue int values. this.BackColor = Color.FromArgb(123, 234, 23);