Re: Saving Colors to a db
Russ Alan <[email protected]> Wed, 4 Jul 2007 14:30:59 -0700
| Newsgroups | gmane.comp.windows.devel.dotnet.winforms |
|---|---|
| Message-ID | <000c01c7be82$9d3e9a20$d7bbce60$@net> |
Have you looked at ColorTranslator? Russ -----Original Message----- From: Discussion forum for developers using Windows Forms to build apps and controls [mailto:[email protected]] On Behalf Of Dean Cleaver Sent: Tuesday, July 03, 2007 1:32 PM To: [email protected] Subject: Re: [DOTNET-WINFORMS] Saving Colors to a db Peter, I've been doing this for about 6 years, so I'm confident I have the code that works - somewhere. Let me did around for you - but basically, the essential bits are to check the incoming string for Color.KnownColor - i.e. is it "White" or "Red" etc. If that's not the case, check if it's 6 or 8 characters - ARGB hex or RGB hex - it changed at one point I think. I'll post the sample code once I get a chance to look right through the layers and see what I do with colour properties. Dino -----Original Message----- From: Discussion forum for developers using Windows Forms to build apps and controls [mailto:[email protected]] On Behalf Of Peter Osucha Sent: Tuesday, 3 July 2007 07:35 To: [email protected] Subject: [DOTNET-WINFORMS] Saving Colors to a db Hi, I am saving Color values to a database as integers after converting the color using the ToArgb() method. When I retrieve the color, I am resetting it using the FromArgb() method. However, this doesn't preserve the color name if the color has a name - as shown in this simple test proc. private void Button3_Click ( object sender, EventArgs e ) { Color col1 = Color.DarkBlue; int col1int = col1.ToArgb ( ); Color col2 = Color.FromArgb ( col1int ); Console.WriteLine ( "{0}, {1}", col1, col2 ); } If I desire to save and retrieve Colors to a database and to preserve the color name if it exists, I imagine I need to save a string of the name instead of the argb value? Peter