Okay all you geniuses out there, how do you convert a Long integer colorcode (16711680, for example, which is blue) into an RGB color code ?(0,0,255, which is the same shade of blue)
Printable View
Okay all you geniuses out there, how do you convert a Long integer colorcode (16711680, for example, which is blue) into an RGB color code ?(0,0,255, which is the same shade of blue)
Red=color mod &H100
Green=int(color/&H100) mod &H100
Blue=int(color/&H10000)