I\'d like to draw a progress bar with percentage in its center, but I\'d like the text to have negative (contrasted) color of the
You can use XOR to calculate the negative (inverted) color;
Public Function InvertColor(color As Long) As Long Return (color Xor &HFFFFFF) End Function