specify web color code in vs2003 for bg

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

is it possible to specify a custom color code say #6E92GD for bg in winform
?

Thanks
Tom
 
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);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top