Hi,
I've got the following code to underline a label to note that it is a link when user mouses over it:
Private Sub lblReturn_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
lblReturn.FontUnderline = True
End Sub
Is there a way to remove the unerline when the mouse moves off? I've tried FontUnderline = False on the MouseDown but has no effect.
I've got the following code to underline a label to note that it is a link when user mouses over it:
Private Sub lblReturn_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
lblReturn.FontUnderline = True
End Sub
Is there a way to remove the unerline when the mouse moves off? I've tried FontUnderline = False on the MouseDown but has no effect.