B
Brad
Thanks for taking the time to read my question.
I have an On Mouse Move event on a control (label). For testing purposes
right now I have this:
Private Sub R2We1_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
MsgBox Me.Tag
End Sub
That gives me nothing. So I tried this:
Private Sub R2We1_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
'MsgBox Me.Name
End Sub
Which gives me the name of the form. How do I get the name of the control
when I mouse over it? How do I get the name of a control when I double click
on it? Can I use the same method to get the Tag properties of the control?
Thanks,
Brad
I have an On Mouse Move event on a control (label). For testing purposes
right now I have this:
Private Sub R2We1_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
MsgBox Me.Tag
End Sub
That gives me nothing. So I tried this:
Private Sub R2We1_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
'MsgBox Me.Name
End Sub
Which gives me the name of the form. How do I get the name of the control
when I mouse over it? How do I get the name of a control when I double click
on it? Can I use the same method to get the Tag properties of the control?
Thanks,
Brad