Dim red, green, blue As Byte
red = 1
green = 255
blue = 128
Dim colourhex As String = "#" & red.ToString("X2") & green.ToString("X2") & blue.ToString("X2")
MsgBox(colourhex) '#01FF80
Re: Color Generator
Posted: Wed Oct 13, 2010 9:44 pm
by Cheatmasterbw
I've made one of these once!
I have a small challenge for you! Let the user select two (or more) colors from a color dialog, or your trackbar method, and when a button is pressed, the program mixes the colors together to make a completely new color!