vbColor

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What are the names of the vbColors I can use to set text color?
I know vbBlue, vbRed, vbBlack, vbGreen...any othres?
 
Stephen said:
What are the names of the vbColors I can use to set text color?
I know vbBlue, vbRed, vbBlack, vbGreen...any othres?

Virtually any color can be represented using the RGB number values but the ones
that have "vbColor" constants defined for them are found in the Object Browser
under the ColorConstants class. They are...

vbBlack
vbBlue
vbCyan
vbGreen
vbMagenta
vbRed
vbWhite
vbYellow
 
Back
Top