Color Code

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
 
D

Douglas J. Steele

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top