Adding pop up help on command buttons

  • Thread starter Thread starter tsison7
  • Start date Start date
T

tsison7

I have several buttons on a form which a user can use to navigate around my
database.

I'd like to have a textbox that I will appear at the bottom of the form that
will change whenever the user hovers above one of the control buttons. How
is the best way I can achieve this?
 
If you put some text in the button's ControlTip Text property, it will pop
up as if by magic when the mouse hovers over the button.
 
Magic!!! That's what I was looking for. But is there also an event for when
the mouse hovers over a control?
 
Here's a short tutorial on TheScripts site that explains the use of the
MouseMove event and gives an example. What you do, in a nutshell, is use the
control's MouseMove event to trigger something (such as a pop up message)
then use the form's Detail section MouseMove event to reset (make the pop up
disappear) the behavior.

http://www.thescripts.com/forum/thread648549.html
 
The MouseMove event is available for all major controls on a form, including
command buttons.

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

Answers/posts based on Access 2000/2003

Message posted via AccessMonster.com
 

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

Back
Top