ControlTip Text not working

misscrf

Registered User.
Local time
Today, 01:59
Joined
Nov 1, 2004
Messages
158
I tried to put some text into the controltip text of the properties of a command button. I tested it out and nothing happened. I have the status bar text, but I want the text tip that hovers when I mouse over.

I looked all over and found stuff on putting it in code. Not what I wanted, because I thought you could just put it in the controltip text property. I tried it out anyway and that doesn't do anything either.

I put this code on a combo, tested it out and the combo flickered a little. That was it. Can anyone please help?

Thanks.

Code:
Private Sub cmdFind_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
On Error GoTo Err_cmdFind_MouseMove

Me.cmdFind.ControlTipText = "Find a Candidate Record"

Exit_cmdFind_MouseMove:
    Exit Sub

Err_cmdFind_MouseMove:
    MsgBox Err.Description
    Resume Exit_cmdFind_MouseMove
End Sub
:eek:
 

Users who are viewing this thread

Back
Top Bottom