You can use your favorite social network to register or link an existing account:
Or use your email address to register without a social network:
Sign in with these social networks:
Or enter your username and password
Forgot your password?
Yes, please link my existing account with for quick, secure access.
No, I would like to create a new account with my profile information.
Recently, there was a thread on UtterAccess that I thought might be helpful to more people. The poster radish asks:
I'd like to change the color of a control then be able to change it back to its original color. If I wanted to use the theme's highlight color, e.g., how would I do that in code? It's listed in the property sheet as "Highlight". Sure, I could grab the values of that color but is it possible to reference "Highlight", "Access Theme 5" or "Dark Blue 3" in vba code?
Access 2007 has a series of generic colors that change color based on the Office theme color. Internally, we store negative numbers and map those to predefined colors in the theme color table.
You can get the underlying value using the immediate window. Something like:
?forms("colors").Controls("Text16").backcolor
In case you are lazy like me—here is a table of the color values you need to use in VBA to have it theme with the Office theme color.
Here is a link where you can get similar color values for system colors.
Comments: (loading) Collapse