Color Generator

Please post all your completed software applications in here. This is for full software which you have created and wish to release and share with everyone.
5 posts Page 1 of 1
Contributors
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Color Generator
code it
Here is my color generator,you can move the trackbars and it will make the color for back on the application... wahooo;

Some imgs of it:
Image
Image
Image


Source: viewtopic.php?f=71&t=3418






Download:
Color Generator.zip
You do not have the required permissions to view the files attached to this post.
User avatar
zachman61
VIP - Donator
VIP - Donator
Posts: 1892
Joined: Wed Dec 16, 2009 9:56 pm

Re: Color Generator
zachman61
Looks nice but does it generate a Code for color in html?
Nailing my feet to the floor is easier than using my own muscles to balance, but you don't see me doing that :)
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Re: Color Generator
mandai
You could get the HTML colour code by converting each value to a hex string then combining them:
Code: Select all
        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
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Re: Color Generator
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!
http://www.megaapps.tk/
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: Color Generator
code it
IM NOT SURE!
5 posts Page 1 of 1
Return to “Full Software”