G
Guest
How do I have a label font go too bold when a user moves the mouse over the
label?
label?
How do I have a label font go too bold when a user moves the mouse over the
label?
Klatuu said:In design view, select the control you want to do this in.
Click on Properties.
Select the Events tab
Select the Move Move event
Click the button on the right with the 3 dots ...
Select code builder
Enter this:
Me.MyControlName.FontBold = True
change myControlName to the name of your control
Do the same thing for the rectangle control to make it normal:
Me.MyControlName.FontBold = False
Klatuu said:Lables have no events, so you will have to find another way.