Dodgeram01
Freshman
Is there a way to save the back color of a textbox in the same format everytime? Sometimes it will save the color as
And sometimes it will save it as
.
I need to be able to read this string and convert it to the type system.drawing.color, which I can do. My problem is I can't do this if I don't know what format the color will save in. Is there any easy way around this, or will I have to play around with seeing what format it is in and then formatting it how I need it?
Code:
Color [Red]
Code:
Color [A=255, R=82, G=226, B=180]
I need to be able to read this string and convert it to the type system.drawing.color, which I can do. My problem is I can't do this if I don't know what format the color will save in. Is there any easy way around this, or will I have to play around with seeing what format it is in and then formatting it how I need it?