PDA

View Full Version : Mouseover question



djl0525
11-16-2005, 11:52 PM
The Word "help" is in a field on my form for certain records. I want a picture, HelpPic01, to appear on the screen when I mouseover "Help".

How do I make that happen, please?

Thanks,
DJ

Killian
11-17-2005, 09:02 AM
Hi and welcome to VBAX :hi:

This depends on on what you're "help" field is.
If, for example, its a Label control, go to the events tab of it's properties and add some code for the MouseMove eventMe.Image1.Visible = TrueLikewise, for the MouseMove event of the FormMe.Image1.Visible = FalseNow, add an image control to your form called Image1 and insert the picture and set it's visible property to No
That should do it...