Menu creator

mikekal

Member
Local time
Yesterday, 21:23
Joined
Jun 24, 2017
Messages
114
Can i change in this menu the font and the background color
 

Attachments

I tried it but nothing happened
 
I have no idea what form you want to change but the one with the blue header was created in an earlier version of Access before themes were a thing. Therefore, to use themes, you need to pick a theme and then change any color you want to a theme color. Then when you change themes, the color would change. Otherwise, you can just continue to use the hard-coded colors.
 
i want to change the background color from the drop down menu and also change the font size from the drop down menu
 
Then add code to those events to change it.

Me.FormHeader.BackColor = RGB(38, 170, 170)

Specify which object and property to change and find the RGB() values by using the color picker. There are other ways to reference color.
 

Users who are viewing this thread

Back
Top Bottom