Change Background of ALL forms simultaneously

Local time
Today, 11:39
Joined
Aug 3, 2005
Messages
66
Hello everyone,

In Access2000, I have designed all my Forms with my own choice of background colour, Button colors, etc.

As part of an upgrade to my database, I now want to change the background color of all the forms.

Is there a way (maybe VB code ?) to change the color of ALL THE FORMS simultaneously ? - Instead of each of the MANY forms individually.

Thank you kindly.

Jamie.
 
If you declare public variables in your start up module and when the application is launched it sets the defaults, such as background colour etc to the variables. Then on the On Load of a form you change the colours to those set by the variables. If you want to use the same colours as your stat up form then do something like

Me.BackGroundColor = Forms("StartUpForm").BackGroundColor
 

Users who are viewing this thread

Back
Top Bottom