Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mouse Over Event of Bound Field

Status
Not open for further replies.

GKWilly

MIS
Dec 16, 2004
33
GB
Hi Guys,

The problem I have is that I have a bound field on a form and sometimes the data string is too long to disply fully. I can't make the field any biger than it is.

I was hoping to be able to use the ControlTipText to display the actual data or a mouse over event but I can;t figure out how to make it work.

Can anyone out there help?

Many thanks in advance.



Gone Drinking
[bigcheeks]
 
Have you looked at Zoom? I think your users may prefer it. Click on the textbox and press Shift+F2.
 
Good thinking. Thanks for that. Is it possible to call the zoom and mybe put it behind the double click event?

Gone Drinking
[bigcheeks]
 
Perhaps:
Code:
[blue]   docmd.RunCommand acCmdZoomBox[/blue]

Calvin.gif
See Ya! . . . . . .
 
Or the same basic code in the MouseMove event as you stated in your original post:

Code:
Private Sub YourControlName_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)

   YourControlName.SetFocus
   DoCmd.RunCommand acCmdZoomBox

End Sub

The Missinglinq

Richmond, Virginia

There's ALWAYS more than one way to skin a cat!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top