Can I use a field as a tool tip?

B

Brian

I would like to display the contents of a field as the tool tip that displays
when I hover my mouse over a control. Can anyone tell me if this possible?
 
F

fredg

I would like to display the contents of a field as the tool tip that displays
when I hover my mouse over a control. Can anyone tell me if this possible?


Code that control's MouseMove event:
Me.[ControlName].ControlTipText = Me.[ControlName]

What does this do for the user that simply looking at the control
doesn't do?
 
B

Brian

I want to try to display the data from a field as the tool tip.

Brian

fredg said:
I would like to display the contents of a field as the tool tip that displays
when I hover my mouse over a control. Can anyone tell me if this possible?


Code that control's MouseMove event:
Me.[ControlName].ControlTipText = Me.[ControlName]

What does this do for the user that simply looking at the control
doesn't do?
 
C

CrazyAccessProgrammer

Just add .value to what Fredg suggested.

Me.[ControlName].ControlTipText = Me.[ControlName].value

Brian said:
I want to try to display the data from a field as the tool tip.

Brian

fredg said:
I would like to display the contents of a field as the tool tip that displays
when I hover my mouse over a control. Can anyone tell me if this possible?


Code that control's MouseMove event:
Me.[ControlName].ControlTipText = Me.[ControlName]

What does this do for the user that simply looking at the control
doesn't do?
 
F

fredg

Just add .value to what Fredg suggested.

Me.[ControlName].ControlTipText = Me.[ControlName].value

Brian said:
I want to try to display the data from a field as the tool tip.

Brian

fredg said:
On Thu, 5 Mar 2009 10:04:03 -0800, Brian wrote:

I would like to display the contents of a field as the tool tip that displays
when I hover my mouse over a control. Can anyone tell me if this possible?

Code that control's MouseMove event:
Me.[ControlName].ControlTipText = Me.[ControlName]

What does this do for the user that simply looking at the control
doesn't do?

Actually, as a control's value property is the default property, the
code can be written either way and return the same result.
Me.[ControlName] is equivalent to Me.[ControlName].Vaue
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top