
ColorToHTML – Convert a VB color for use in a HTML page
‘ convert a VB color code to the ##rrggbb format used in HTML attributesFunction ColorToHTML(ByVal color As Long) As String ‘ HTML color codes are in the format #RRGGBB (red, green, blue) ‘ while Hex(color) returns numbers in the format BBGGRR ‘ therefore we just have to invert the order