472,351 Members | 1,620 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,351 software developers and data experts.

How can you convert an integer into a VB.NET color?

In VB6, foreground and background colors of controls had to be assigned a
single number. If you knew the RGB values for the color, you still had to
convert them into the single number accepatable to the VB6 controls.

In VB.NET, you can't set colors that way anymore, now you have to use a
"color". There is a way to convert RGB values to a "color", using the
Color.FromARGB method. But there doens't seem to be a way to convert the old
single numbers into a "color".

In VB6, there was a method to convert rgb values into a single number, using
the RGB method. This method is still available in VB6 through the
Microsoft.VisualBasic.Information namespace. However, I have the single
numbers I used before (that were REQUIRED in VB6), I don't have separate Red,
Green, and Blue values for those numbers. Neither VB6 nor VB.NET seem to have
a method for converting a single number back to its component red, green, and
blue values!! (If there IS one, please someone tell me what it is!)

So, if there is no way to convert the single numbers back to rgb values OR
to convert them to the new "color" values, then VB.NET has changed the whole
system for assigning colors to controls, and is giving me no way to convert
the numbers that were required before into the new system. That's not very
nice!

If anyone has an answer for this, please let me know.

--
Thanks.
ro*****@hotmail.com
Jun 6 '06 #1
5 8369
The table available through MSDN link beflow 'may' help you:

http://msdn.microsoft.com/library/de...alBasicNET.asp
"Bob Homes" <ro*****@hotmail.com.(nospam)> wrote in message
news:4B**********************************@microsof t.com...
In VB6, foreground and background colors of controls had to be assigned a
single number. If you knew the RGB values for the color, you still had to
convert them into the single number accepatable to the VB6 controls.

In VB.NET, you can't set colors that way anymore, now you have to use a
"color". There is a way to convert RGB values to a "color", using the
Color.FromARGB method. But there doens't seem to be a way to convert the
old
single numbers into a "color".

In VB6, there was a method to convert rgb values into a single number,
using
the RGB method. This method is still available in VB6 through the
Microsoft.VisualBasic.Information namespace. However, I have the single
numbers I used before (that were REQUIRED in VB6), I don't have separate
Red,
Green, and Blue values for those numbers. Neither VB6 nor VB.NET seem to
have
a method for converting a single number back to its component red, green,
and
blue values!! (If there IS one, please someone tell me what it is!)

So, if there is no way to convert the single numbers back to rgb values OR
to convert them to the new "color" values, then VB.NET has changed the
whole
system for assigning colors to controls, and is giving me no way to
convert
the numbers that were required before into the new system. That's not very
nice!

If anyone has an answer for this, please let me know.

--
Thanks.
ro*****@hotmail.com

Jun 6 '06 #2
Hello Bob,

Check out the System.Drawing.ColorTranslator class. (hint: VB6 color storage
is defined by OLE).

-Boo
In VB6, foreground and background colors of controls had to be
assigned a single number. If you knew the RGB values for the color,
you still had to convert them into the single number accepatable to
the VB6 controls.

In VB.NET, you can't set colors that way anymore, now you have to use
a "color". There is a way to convert RGB values to a "color", using
the Color.FromARGB method. But there doens't seem to be a way to
convert the old single numbers into a "color".

In VB6, there was a method to convert rgb values into a single number,
using the RGB method. This method is still available in VB6 through
the Microsoft.VisualBasic.Information namespace. However, I have the
single numbers I used before (that were REQUIRED in VB6), I don't have
separate Red, Green, and Blue values for those numbers. Neither VB6
nor VB.NET seem to have a method for converting a single number back
to its component red, green, and blue values!! (If there IS one,
please someone tell me what it is!)

So, if there is no way to convert the single numbers back to rgb
values OR to convert them to the new "color" values, then VB.NET has
changed the whole system for assigning colors to controls, and is
giving me no way to convert the numbers that were required before into
the new system. That's not very nice!

If anyone has an answer for this, please let me know.

Jun 6 '06 #3
Mike, no, it really doesn't. I have a whole bunch of "strange" colors, not
just the usual 7 or 8. Thanks anyway.

ro*****@hotmail.com
"Mike McIntyre" wrote:
The table available through MSDN link beflow 'may' help you:

http://msdn.microsoft.com/library/de...alBasicNET.asp
"Bob Homes" <ro*****@hotmail.com.(nospam)> wrote in message
news:4B**********************************@microsof t.com...
In VB6, foreground and background colors of controls had to be assigned a
single number. If you knew the RGB values for the color, you still had to
convert them into the single number accepatable to the VB6 controls.

In VB.NET, you can't set colors that way anymore, now you have to use a
"color". There is a way to convert RGB values to a "color", using the
Color.FromARGB method. But there doens't seem to be a way to convert the
old
single numbers into a "color".

In VB6, there was a method to convert rgb values into a single number,
using
the RGB method. This method is still available in VB6 through the
Microsoft.VisualBasic.Information namespace. However, I have the single
numbers I used before (that were REQUIRED in VB6), I don't have separate
Red,
Green, and Blue values for those numbers. Neither VB6 nor VB.NET seem to
have
a method for converting a single number back to its component red, green,
and
blue values!! (If there IS one, please someone tell me what it is!)

So, if there is no way to convert the single numbers back to rgb values OR
to convert them to the new "color" values, then VB.NET has changed the
whole
system for assigning colors to controls, and is giving me no way to
convert
the numbers that were required before into the new system. That's not very
nice!

If anyone has an answer for this, please let me know.

--
Thanks.
ro*****@hotmail.com


Jun 6 '06 #4
On Tue, 6 Jun 2006 03:58:48 +0000 (UTC), GhostInAK
<gh*******@gmail.com> wrote:
Hello Bob,

Check out the System.Drawing.ColorTranslator class. (hint: VB6 color storage
is defined by OLE).

-Boo
There's even a discussion in the Help file about VB6/VB2005 color
handling changes. What a novel idea.

Gene
In VB6, foreground and background colors of controls had to be
assigned a single number. If you knew the RGB values for the color,
you still had to convert them into the single number accepatable to
the VB6 controls.

In VB.NET, you can't set colors that way anymore, now you have to use
a "color". There is a way to convert RGB values to a "color", using
the Color.FromARGB method. But there doens't seem to be a way to
convert the old single numbers into a "color".

In VB6, there was a method to convert rgb values into a single number,
using the RGB method. This method is still available in VB6 through
the Microsoft.VisualBasic.Information namespace. However, I have the
single numbers I used before (that were REQUIRED in VB6), I don't have
separate Red, Green, and Blue values for those numbers. Neither VB6
nor VB.NET seem to have a method for converting a single number back
to its component red, green, and blue values!! (If there IS one,
please someone tell me what it is!)

So, if there is no way to convert the single numbers back to rgb
values OR to convert them to the new "color" values, then VB.NET has
changed the whole system for assigning colors to controls, and is
giving me no way to convert the numbers that were required before into
the new system. That's not very nice!

If anyone has an answer for this, please let me know.

Jun 6 '06 #5
=?Utf-8?B?Qm9iIEhvbWVz?= <ro*****@hotmail.com.(nospam)> wrote in
news:4B**********************************@microsof t.com:
In VB6, foreground and background colors of controls had to be
assigned a single number. If you knew the RGB values for the color,
you still had to convert them into the single number accepatable to
the VB6 controls.

In VB.NET, you can't set colors that way anymore, now you have to use
a "color". There is a way to convert RGB values to a "color", using
the Color.FromARGB method. But there doens't seem to be a way to
convert the old single numbers into a "color".

In VB6, there was a method to convert rgb values into a single number,
using the RGB method. This method is still available in VB6 through
the Microsoft.VisualBasic.Information namespace. However, I have the
single numbers I used before (that were REQUIRED in VB6), I don't have
separate Red, Green, and Blue values for those numbers. Neither VB6
nor VB.NET seem to have a method for converting a single number back
to its component red, green, and blue values!! (If there IS one,
please someone tell me what it is!)

So, if there is no way to convert the single numbers back to rgb
values OR to convert them to the new "color" values, then VB.NET has
changed the whole system for assigning colors to controls, and is
giving me no way to convert the numbers that were required before into
the new system. That's not very nice!

If anyone has an answer for this, please let me know.


Color.FromARGB(integer)

It is overloaded. See the msdn help for color.fromArgb.

to get the R, G and B from a color just use

dim r as byte = myColor.R
etc.

Colors are just int32s. ARGB = byte order.
So you can split with bitwise operators:

here's some general messing about:

Dim c As Color = Color.Chocolate
Debug.WriteLine(Hex(c.ToArgb))
' outputs: FFD2691E
Dim red As Byte = c.R
Dim green As Byte = c.G
Dim blue As Byte = c.B
Dim c2 As Color = Color.FromArgb(&HFFD2691E)
Debug.WriteLine(Hex(c2.ToArgb))
' outputs: FFD2691E
Dim red2 As Byte = &HD2
Dim green2 As Byte = &H69
Dim blue2 As Byte = &H1E
Dim c3 As Color = Color.FromArgb(red2, green2, blue2)
Debug.WriteLine(Hex(c3.ToArgb))
' outputs: FFD2691E
' do it manually:
Dim color4int As Integer = &HFFD2691E
Dim R4 As Byte = (color4int >> 16) And &HFF
Dim G4 As Byte = (color4int >> 8) And &HFF
Dim b4 As Byte = (color4int And &HFF)
Debug.WriteLine(String.Concat("red: ", Hex(R4), ", green : ", Hex(G4), ",
blue: ", Hex(b4)))
' outputs: red: D2, green : 69, blue: 1E
' reassemble:
Dim color5int As Integer = (CInt(R4) << 16) Or (CInt(G4) << 8) Or b4
Dim color5 As Color = Color.FromArgb(color5int)
Debug.WriteLine(Hex(color5.ToArgb))
' outputs D2691E - no alpha!
' use another override to supply the alpha for a base color:
Dim color6 As Color = Color.FromArgb(&HFF, Color.FromArgb(color5int))
Debug.WriteLine(Hex(color6.ToArgb))
' outputs FFD2691E
' or you could have added it bitwise:
Dim color7int As Integer = (&HFF << 24) Or (CInt(R4) << 16) Or (CInt(G4)
<< 8) Or b4
Dim color7 As Color = Color.FromArgb(color7int)
Debug.WriteLine(Hex(color6.ToArgb))
Always check the overload list for a method. It pops up in intellisense:

after typing this:
dim c as color = color.fromARGB(

intellisense pops up
"1 of 4 FromARGB(argb as integer) as System.Drawing.Color
argb = A value specifying the 32 bit color value"

and you can press the up and down arrows to see the other overloads.

For more info on an overload, look in the help...
Jun 6 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ste | last post by:
Hi, I have a dump with a table with this field: "hdstart" integer which contains integer like 1042758000 1028152800 etc etc How can I...
3
by: glenn h | last post by:
I have i time in Integer = 37825 , how can I convert it in C# to Timeformat = 10:30:25 Glenn
7
by: henrytcy | last post by:
Hi, How can I convert integer, for example 12113, to char array but without specify an array size in C programming? Thanks!
5
by: VB Programmer | last post by:
How do I convert the following to a HEX code I can use in HTML documents? 1. 2. Aqua FYI: When I print the session variable I'm storing...
2
by: Tom | last post by:
I need to convert an integer to a GUID consisting only of capital letters and numbers. I also need to be able to convert it back again. I would...
2
karthickbabu
by: karthickbabu | last post by:
Hi In my application i want to convert integer to decimal. I get a input and using convert function to convert into decimal. But it shows as...
4
by: mthread | last post by:
Hi, I would like to know the method to convert integer to string. Thanx in advance.
6
by: ngajay | last post by:
Please tell me... how to convert integer to hex in little endian format ? example : i'm input int = 9995 then ...
2
by: pantherxin | last post by:
Writing program to calculate cir., area, etc. of circle. Radius is input as integer; how to convert integer to proceed with calculations?
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.