|
I'm not 100% certain on this, but maybe around 99.
Just parse the color by two indices at a time, convert and append to the file name.
And, as I'm sure you know, converting from hex to decimal is a cinch.
either:
Dim s As String = "FF"
MsgBox(CInt("&H" & s))
or:
Dim s As String = "FF"
MsgBox(Convert.ToInt32(s, 16))
|