Reputation: 43
In Microsoft Access 2007 under (Form View), how do you make text in a table display the entire description when you mouseover one of the rows on the table. As shown on the picture above.
I could not find any information on the internet to accomplish this task with Macros or VBA.
I appreciate any help you can give me.
Demonstrated Example. Mouse over to the Linked text. http://www.dynamicdrive.com/dynamicindex5/dhtmltooltip.htm
Upvotes: 4
Views: 9513
Reputation: 2701
Unfortunately, I don't think you can do this on a datasheet with any of the built-in options. If, however, you are using a form, you can just put the following code in the Form.Current routine.
LongDesc.ControlTipText = LongDesc
where LongDesc is the name of the field that you want the tooltip on.
Upvotes: 1