Menu creator (1 Viewer)

mikekal

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

Attachments

  • Menu Creator.accdb
    1 MB · Views: 78

mikekal

Member
Local time
Yesterday, 23:03
Joined
Jun 24, 2017
Messages
114
I tried it but nothing happened
 

Pat Hartman

Super Moderator
Staff member
Local time
Today, 02:03
Joined
Feb 19, 2002
Messages
43,445
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.
 

mikekal

Member
Local time
Yesterday, 23:03
Joined
Jun 24, 2017
Messages
114
i want to change the background color from the drop down menu and also change the font size from the drop down menu
 

Pat Hartman

Super Moderator
Staff member
Local time
Today, 02:03
Joined
Feb 19, 2002
Messages
43,445
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

Top Bottom