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
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:
Some imgs of it:



Source: viewtopic.php?f=71&t=3418
Download:
You do not have the required permissions to view the files attached to this post.
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 

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
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!
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!
5 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023