- Home
·
- Miscellaneous
·
- A simple code that highlights the label when the mouse is pointing it!
A simple code that highlights the label when the mouse is pointing it!
A simple code that highlights the label when the mouse is pointing it!
Rate A simple code that highlights the label when the mouse is pointing it!
(2(2 Vote))
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.ForeColor = &H80000012
Label1.FontUnderline = False
End Sub
Private Sub Label1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.ForeColor = &HFF0000
Label1.FontUnderline = True
End Sub
A simple code that highlights the label when the mouse is pointing it! Comments
No comments yet — be the first to post one!
Post a Comment