Working in VB6.
I will use a text editor for doing some typing work, but it's just text. When I think it's ready, I will paste the text over into the code.

I copy and paste this...

Code:
    color_Orange = clng(&HFFBF00&)
    color_Lime = clng(&HBFFF00&)
    color_Pink = clng(&HFF00BF&)
    color_Purple = clng(&HBF00FF&)
    color_Sky = clng(&HFFBF&)
    color_Blue = clng(&HBFFF&)
    color_DarkGray = clng(&H404040&)

BUT, I get this...

Code:
    color_Orange = CLng(&HFFBF00)
    color_Lime = CLng(&HBFFF00)
    color_Pink = CLng(&HFF00BF)
    color_Purple = CLng(&HBF00FF)
    color_Sky = CLng(&HFFBF)
    color_Blue = CLng(&HBFFF)
    color_DarkGray = CLng(&H404040)
If I'm supposed to use trailing ampersands for color codes, why is VB6 removing them???