J
Jose Perdigao
I created a mainmenu where I have 16 buttons.
By default in all buttons the following properties:
font name: Wingdings
caption: l
size: 10
color: 16711680
So, on mouse move, I want to change the properties to
font name: Wingdings
caption: l
size: 16
color: 4194432
When the mouse is out of the button I woult like back for the origina
properties.
I devolped the following procedure:
Private Sub Option1_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
Me!Option1.FontSize = 20
Me!Option1.ForeColor = 4194432
End Sub
But when the mouse is out of the button, the last properties still the.
How can I do buttons back to original properties?
Any suggestions?
Thanks,
José Perdigão
By default in all buttons the following properties:
font name: Wingdings
caption: l
size: 10
color: 16711680
So, on mouse move, I want to change the properties to
font name: Wingdings
caption: l
size: 16
color: 4194432
When the mouse is out of the button I woult like back for the origina
properties.
I devolped the following procedure:
Private Sub Option1_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
Me!Option1.FontSize = 20
Me!Option1.ForeColor = 4194432
End Sub
But when the mouse is out of the button, the last properties still the.
How can I do buttons back to original properties?
Any suggestions?
Thanks,
José Perdigão