Hey,

I've set the colour of a label using the ColorDialog and I want to read the chosen colour value into a string, using the following code:

Code:
ColorDialog1.ShowDialog()
label1.ForeColor = ColorDialog1.Color
For example, I have chosen, say, blue as the colour.. How would I read this value into a string, or the hex code for this colour?

Thanks in advance,

PlaystationMasterBoy