Click here to Skip to main content
Licence CPOL
First Posted 3 Mar 2008
Views 11,100
Downloads 107
Bookmarked 12 times

HEX and HTML Color Clipboard

By | 3 Mar 2008 | Article
This application is a HEX and HTML color clipboard
colorcoder2_1.JPG

Introduction

ColorCoder2 is the second version of my HEX & HTML Color wizard.
It is particularly useful in the Web and graphics design industry because it makes light work of RGB, HEX and HTML color codes. It also features an integrated clipboard manager that can store and monitor your clipboard entries as well as convert the color entry on-the-fly.

ColorCoder2 makes use of the Desktop Color Picker Application by Code Project User nd1279.

Using the Code

The code is formatted into different blocks of functions.

The following block converts the RGB colour values to hex and sets the control values:

/// <summary>
/// Sets the color from hex
/// </summary>
/// <param name="hexValue">The Color value in Hex</param>
private void changeColor(string hexValue)
{
    colorLabel.Text = "";
    try
    {
        int tmpRed = 0;
        int tmpGreen = 0;
        int tmpBlue = 0;

        tmpRed = Convert.ToInt32(hexValue.Substring(0, 2), 16);
        if (hexValue.Length >= 4)
        {
            tmpGreen = Convert.ToInt32(hexValue.Substring(2, 2), 16);
            if (hexValue.Length >= 6)
            {
                tmpBlue = Convert.ToInt32(hexValue.Substring(4, 2), 16);
            }
        }
    
        //Set the Color Label
        colorLabel.BackColor = Color.FromArgb(255, tmpRed, tmpGreen, tmpBlue);
        //Set the Selectors
        redSelector.Value = tmpRed;
        redLbl.Text = tmpRed.ToString();
        redValue = tmpRed;
        greenSelector.Value = tmpGreen;
        greenLbl.Text = tmpGreen.ToString();
        greenValue = tmpGreen;
        blueSelector.Value = tmpBlue;
        blueLbl.Text = tmpBlue.ToString();
        blueValue = tmpBlue;
        //Set the HEX text box
        hexTxt.Text = hexValue;
        //Set the HTML text box
        htmlTxt.Text = "#" + hexValue;
        //Set the RGB text box
        rgbTxt.Text = "" + tmpRed + "," + tmpGreen + "," + tmpBlue;
        colorLabel.Text = hexTxt.Text;
    }
    catch (Exception ex)
    {
        colorLabel.BackColor = Color.White;
        colorLabel.Text = "Invalid Format";
        Console.WriteLine(ex.Message);
    }
}

Points of Interest

This application also makes use of the process class that monitors an external application and sets some values if the application is terminated.

History

  • 3rd March, 2008: Initial post
    Since this is version 2 and I never posted version 1, it is as up-to-date as it can be.
    Any suggestions and addons are welcome.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Linoxxis

Software Developer (Senior)
Process Computing Technology
South Africa South Africa

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralBug Pinmemberddanz2:10 30 Mar '08  
GeneralRe: Bug PinmembereRRaTuM14:56 15 May '09  
GeneralColorCoder2 Upgrades PinmemberLionoxxis3:06 5 Mar '08  
GeneralNice utility PinmemberiLeKtraN8:04 4 Mar '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 3 Mar 2008
Article Copyright 2008 by Linoxxis
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid