You shouldn't need to click in the control, the control tip should be
displayed if you hover the pointer over the control for a second or so.
That's how it works on my system, using Access 2003. I seem to remember the
control tip feature being a little unpredictable that way in earlier
versions, though.
I don't think there's much you can do to control the built-in control tip
feature, if you need more control, you might want to check out Steven
Lebans's custom ToolTips class ...
http://www.lebans.com/tooltip.htm

Signature
Brendan Reynolds
> THANK YOU, Brendan!!!....IT WORKED!!! :) One more thing, I notice I
> have to click in the field before the pop up box displays the text. Is
[quoted text clipped - 3 lines]
>
> Thanks!!!
Pat Hartman - 25 Oct 2005 03:59 GMT
The Current event wouldn't be activated until the user clicked in a field to
move focus to the record. Try the MouseMove event for the field in
question.
> You shouldn't need to click in the control, the control tip should be
> displayed if you hover the pointer over the control for a second or so.
[quoted text clipped - 14 lines]
>>
>> Thanks!!!
Brendan Reynolds - 25 Oct 2005 10:27 GMT
I was thinking about a single-record form, Pat, in which case the Current
event for the first record would fire when the form was opened. But now that
you mention it, I suppose if it is a continuous form placing the code in the
Current event would mean that when the user pointed to a different record,
without clicking, the Control Tip would still display the value from the
first record. Also when the user was entering a new record, the Control Tip
would not display anything until the record had been saved. So I expect you
are right - the MouseMove event is probably a better choice.

Signature
Brendan Reynolds
> The Current event wouldn't be activated until the user clicked in a field
> to move focus to the record. Try the MouseMove event for the field in
[quoted text clipped - 17 lines]
>>>
>>> Thanks!!!