Color Code

  • Thread starter Thread starter learning_codes
  • Start date Start date
L

learning_codes

Hi,

I'm trying to load many different color but I don't know where to get
the list of color code.

If Me.RecordSelectors = False Then
DoCmd.MoveSize 0, 0, 8200, 5350
Else
DoCmd.MoveSize 0, 0, 8500, 5350
End If


I'm looking for
- Light Blue
- Dark Blue
- Light Grey
- Medium Grey
- Light Green
- Black

Your help would be much appreciated
 
If you know the RGB code of the colour in which you're interested, you can
use the RGB function to convert it to a value Access can use.

If you don't know the RGB code, you can use the Color Picker dialog to find
the colour(s) in which you're interested and determine their numeric value.
Open any form and for any control that has a ForeColor or BackColor
property, click on the ellipsis (...) to the right of the property to invoke
the dialog, or check my March, 2005 "Access Answers" column in Pinnacle
Publication's "Smart Access" for how to invoke the dialog without going
through the Properties page. You can download the column (and sample
database) for free at http://www.accessmvp.com/DJSteele/SmartAccess.html
 
Back
Top