Changes

Color Constants / Color Forms / Controls / Transparency VB6

190 bytes added, 19:05, 10 February 2008
/* All Possible Ways */
The following lines were added (+) and removed (-):
   cmd(0).BackColor = &HFF&      ' Red1. In HEX, BLUE is first, Green, then Red, the reverse of RGB (actually BGR) is the default VB method   cmd(1).BackColor = &HFF00&    ' Green   cmd(0).BackColor = &HFF&      ' Red   / &H0000FF&   cmd(2).BackColor = &HFF0000  ' Blue   cmd(1).BackColor = &HFF00&    ' Green / &H00FF00&   cmd(2).BackColor = &HFF0000  ' Blue / &HFF0000&2. Decimal RGB value3. Using VB Color Constants
Bureaucrat, administrator
16,192
edits