- Home
·
- Miscellaneous
·
- Mouse over function. Moves a command button when mouse moves over the button.
Mouse over function. Moves a command button when mouse moves over the button.
Mouse over function. Moves a command button when mouse moves over the button.
Rate Mouse over function. Moves a command button when mouse moves over the button.
(1(1 Vote))
'Declare the speed of the button to move
Const ButtonSpeed = 40
Private Sub Command1_MouseMove(Button as Integer, Shift as Integer,X as Single,Y as single)
'When mouse moves over command button then move button Up and Right
command1.left = command1.left + ButtonSpeed
command1.top = command1.top - ButtonSpeed
End Sub
Mouse over function. Moves a command button when mouse moves over the button. Comments
No comments yet — be the first to post one!
Post a Comment