1

VB2010. I have setup some settings in MyProject.Settings. One of them being being a color variable. However I cant seem to figure out how I can set a specific RGB value as the default. The My.Settings designer only lets you pick predetermined colors. How can I set the default to be RGB(214, 133, 137).

sinDizzy
  • 1,300
  • 7
  • 28
  • 60

1 Answers1

1

Just click in there and type in your desired value! enter image description here

Idle_Mind
  • 38,363
  • 3
  • 29
  • 40
  • Note: You can find out the correct format for the value string by picking a "custom" color from the color picker dialog you get in the drop-down menu. This is relevant, because (at least in VS 2010) with the German locale, the RGB values must be separated by semicolons instead of commas: 214; 133; 137 – Marcus Mangelsdorf Aug 06 '15 at 10:55