A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Memo fields on mouseover



 
 
Thread Tools Display Modes
  #1  
Old September 8th, 2009, 04:00 PM posted to microsoft.public.access.forms
Alex Hammerstein
external usenet poster
 
Posts: 70
Default Memo fields on mouseover

Hi

I have a continuous sub-form which displays the date, creator and details of
notes relating to jobs. The note text field is a memo field. Against each
note I have placed a Read button which will display the whole record in a
pop up form.

However I was wondering, is there any way to allow a user to see the whole
contents of the note text by simply mousing over the text area? I know you
can do this on web sites, but not sure in Access

Many thanks

Alex

  #2  
Old September 8th, 2009, 05:16 PM posted to microsoft.public.access.forms
Arvin Meyer [MVP][_2_]
external usenet poster
 
Posts: 2,310
Default Memo fields on mouseover

You can use ControlTip text but only for 255 characters. You could also open
your popup form using the mouseover event. The later may be a problem since
it will fire and you'll have to wait to enter text in the memo.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

"Alex Hammerstein" wrote in message
...
Hi

I have a continuous sub-form which displays the date, creator and details
of
notes relating to jobs. The note text field is a memo field. Against
each
note I have placed a Read button which will display the whole record in a
pop up form.

However I was wondering, is there any way to allow a user to see the whole
contents of the note text by simply mousing over the text area? I know
you
can do this on web sites, but not sure in Access

Many thanks

Alex



  #3  
Old September 8th, 2009, 06:09 PM posted to microsoft.public.access.forms
Alex Hammerstein
external usenet poster
 
Posts: 70
Default Memo fields on mouseover

Thanks Arvin

Alex



On 08/09/2009 17:16, in article ,
"Arvin Meyer [MVP]" wrote:

You can use ControlTip text but only for 255 characters. You could also open
your popup form using the mouseover event. The later may be a problem since
it will fire and you'll have to wait to enter text in the memo.


  #4  
Old September 8th, 2009, 06:14 PM posted to microsoft.public.access.forms
Krzysztof Naworyta
external usenet poster
 
Posts: 80
Default Memo fields on mouseover

Juzer Alex Hammerstein napisal


(...)
| However I was wondering, is there any way to allow a user to see the
| whole contents of the note text by simply mousing over the text area?
| I know you can do this on web sites, but not sure in Access


This is very problematic in a continuous form.
After many years of experience with MS Access I used to say that nothing
is impossible in it, but this is just very difficult.

There is an event "OnMouseMove," but there is no event "OnMouseOver".
And there is very difficult to indicate which line/record you should read
data from...
Me.Control1 provides access to the current record (which has a focus)
How to indicate record you moving mouse over?
Very complicated...

--
KN

  #5  
Old September 8th, 2009, 06:32 PM posted to microsoft.public.access.forms
Linq Adams via AccessMonster.com
external usenet poster
 
Posts: 1,474
Default Memo fields on mouseover

I agree with Krzysztof. You can use the "zoombox" command to zoom the control
when mousing over the memo field textbox, but it's going to display the data
from that textbox ***of the currently selected record*** not the particular
record whose memo field the user is mousing over. And I know of no practical
way to determine which record the mouse is over. Perhaps someone else does.

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000/2003

Message posted via http://www.accessmonster.com

  #6  
Old September 8th, 2009, 08:21 PM posted to microsoft.public.access.forms
Alex Hammerstein
external usenet poster
 
Posts: 70
Default Memo fields on mouseover

Thanks, I have decided not to offer that facility. :-)

Alex




On 08/09/2009 18:14, in article , "Krzysztof
Naworyta" wrote:

Juzer Alex Hammerstein napisal


(...)
| However I was wondering, is there any way to allow a user to see the
| whole contents of the note text by simply mousing over the text area?
| I know you can do this on web sites, but not sure in Access


This is very problematic in a continuous form.
After many years of experience with MS Access I used to say that nothing
is impossible in it, but this is just very difficult.

There is an event "OnMouseMove," but there is no event "OnMouseOver".
And there is very difficult to indicate which line/record you should read
data from...
Me.Control1 provides access to the current record (which has a focus)
How to indicate record you moving mouse over?
Very complicated...


  #7  
Old September 8th, 2009, 08:21 PM posted to microsoft.public.access.forms
Alex Hammerstein
external usenet poster
 
Posts: 70
Default Memo fields on mouseover

Thanks, I have decided not to offer that facility. :-)

Alex



On 08/09/2009 18:32, in article 9bd248e8e5e72@uwe, "Linq Adams via
AccessMonster.com" u28780@uwe wrote:

I agree with Krzysztof. You can use the "zoombox" command to zoom the control
when mousing over the memo field textbox, but it's going to display the data
from that textbox ***of the currently selected record*** not the particular
record whose memo field the user is mousing over. And I know of no practical
way to determine which record the mouse is over. Perhaps someone else does.


  #8  
Old September 8th, 2009, 11:01 PM posted to microsoft.public.access.forms
Stephen Lebans
external usenet poster
 
Posts: 619
Default Memo fields on mouseover

See:
http://www.lebans.com/conformscurcontrol.htm

ContinuousFormsCurrentRow.zip is a class that allows you to programmatically
access the contents of a bound control, as the user moves their Mouse, but
the control does not have the focus. For Forms in Continuous View.
--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.


"Linq Adams via AccessMonster.com" u28780@uwe wrote in message
news:9bd248e8e5e72@uwe...
I agree with Krzysztof. You can use the "zoombox" command to zoom the
control
when mousing over the memo field textbox, but it's going to display the
data
from that textbox ***of the currently selected record*** not the
particular
record whose memo field the user is mousing over. And I know of no
practical
way to determine which record the mouse is over. Perhaps someone else
does.

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000/2003

Message posted via http://www.accessmonster.com



  #9  
Old September 9th, 2009, 08:16 PM posted to microsoft.public.access.forms
David W. Fenton
external usenet poster
 
Posts: 3,373
Default Memo fields on mouseover

"Stephen Lebans"
wrote in
:

See:
http://www.lebans.com/conformscurcontrol.htm

ContinuousFormsCurrentRow.zip is a class that allows you to
programmatically access the contents of a bound control, as the
user moves their Mouse, but the control does not have the focus.
For Forms in Continuous View.


Gad, I wish I'd known about this last week, as I needed it! Instead,
I implemented a shortcut menu.

I may just replace that with yours.

And, it just goes to show that if it's something advanced and cool
and sensible, Stephen Lebans has probably already implemented it!

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
  #10  
Old September 9th, 2009, 08:27 PM posted to microsoft.public.access.forms
David W. Fenton
external usenet poster
 
Posts: 3,373
Default Memo fields on mouseover

"Stephen Lebans"
wrote in
:

See:
http://www.lebans.com/conformscurcontrol.htm

ContinuousFormsCurrentRow.zip is a class that allows you to
programmatically access the contents of a bound control, as the
user moves their Mouse, but the control does not have the focus.
For Forms in Continuous View.


Well, turns out I'd downloaded that years ago and never used it.

It won't work unchanged for my situation, as I want to display
information not displayed on the continuous form (a large memo
field). I also don't want it limited to a single control, so I guess
I'd have to set up multiple controls (i.e., multiple instances of
the class), and disconnect the data part (i.e., the line using the
control's ControlSource property) from the mouseover events.

But I don't have time to futz with getting it to work now.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:39 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.