Define new color object
System.Drawing.Color newColor = new System.Drawing.Color();
Assign it RGB values or ARGB
newColor = System.Drawing.Color.FromArgb(int red, int green, int blue)
> Meant to add - VS2003
> Thanks
Scott M. - 11 Oct 2007 01:08 GMT
I belive you can also assign non-standard colors via the property window by
directly entering rgb comma separated values: 255,255,255
> Define new color object
>
[quoted text clipped - 6 lines]
>> Meant to add - VS2003
>> Thanks