Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Forms / October 2005

Tip: Looking for answers? Try searching our database.

How to display text when cursor is placed in field

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
reeve13 - 22 Oct 2005 20:33 GMT
I am working in a continuous form, and I am trying to get the yellowis
pop up box to display the actual text entered when my cursor is place
within the field called “Specific Matter” I really would be gratefu
for any help on this one.

Thanks

--
reeve1
Pat Hartman - 23 Oct 2005 04:29 GMT
Put your message in the ControlTip Text property.  If you want it to display
in the status bar, put it in the StatusBar text.

> I am working in a continuous form, and I am trying to get the yellowish
> pop up box to display the actual text entered when my cursor is placed
> within the field called "Specific Matter" I really would be grateful
> for any help on this one.
>
> Thanks.
reeve13 - 23 Oct 2005 16:52 GMT
Please forgive me if what I am trying to articulate is not coming acros
clearly.  What I would like to happen is (for e.g., on this websit
(high-tech talks forum), when I place my cursor on a name the yellowis
pop up box displays the text/question asked…and that’s what I would lik
to happen. Is there a code or string I need to enter in the “control ti
text” property box that will display the text already there?

Thanks

--
reeve1
Brendan Reynolds - 23 Oct 2005 17:20 GMT
Private Sub Form_Current()
   Me.TestID.ControlTipText = Nz(Me.TestID.Value, "")
   Me.TestText.ControlTipText = Nz(Me.TestText.Value, "")
End Sub

Signature

Brendan Reynolds

> Please forgive me if what I am trying to articulate is not coming across
> clearly.  What I would like to happen is (for e.g., on this website
[quoted text clipped - 4 lines]
>
> Thanks.
reeve13 - 23 Oct 2005 21:17 GMT
THANK YOU, Brendan!!!....IT WORKED!!! :)  One more thing, I notice
have to click in the field before the pop up box displays the text.  I
there a way just to move my cursor within the field and have it display
the text without clicking in the field.  Also, how do I get the text t
wrap so the box is not the same length of the text?

Thanks!!

--
reeve1
Brendan Reynolds - 24 Oct 2005 09:48 GMT
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!!!
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.