Hi,
My tooltips for my command buttons do not work at all or in some cases not until you click the button. I tried this code from a post on this forum that was supposed to fix this problem, but it threw a "Method or data member not found" compile error for the "lblHelp1":
'Event on command button
Private Sub cmdRefreshList_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.lblHelp1.Visible = True
End Sub
'Event on Detail section of Form
Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Me.lblHelp1.Visible = True Then
Me.lblHelp1.Visible = False
End If
End Sub
I don't know where or how to declare "lblHelp1". It is quite likely that I don't know enough to use it properly, I am a rank amature, but eager to learn. I entered this code in the form's code.
The strange thing is that the tooltips used to work, a little slow, but they worked. There have been no significant changes, but now the don't seem to work properly.
My tooltips for my command buttons do not work at all or in some cases not until you click the button. I tried this code from a post on this forum that was supposed to fix this problem, but it threw a "Method or data member not found" compile error for the "lblHelp1":
'Event on command button
Private Sub cmdRefreshList_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.lblHelp1.Visible = True
End Sub
'Event on Detail section of Form
Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Me.lblHelp1.Visible = True Then
Me.lblHelp1.Visible = False
End If
End Sub
I don't know where or how to declare "lblHelp1". It is quite likely that I don't know enough to use it properly, I am a rank amature, but eager to learn. I entered this code in the form's code.
The strange thing is that the tooltips used to work, a little slow, but they worked. There have been no significant changes, but now the don't seem to work properly.