making a lable visible on Mousemove

soundsfishy

Registered User.
Local time
Today, 17:44
Joined
Sep 25, 2002
Messages
174
I im trying to make a lable visible (similar to a ControlTip) to inform user that they can double click the textbox which will do something. I know how to make the lable appear when the cursur moves over the textbox but I dont know how to make it disappear when the cursur moves off the textbox.

im using the following mouseMove event

Private Sub Family_Name_MouseMove
Me.mylableName.visible = True


Any suggestions anyone!
 
The OnMouseMove event of the Detail section will do it. Check out my attached sample to see it (and a few other options) in action.

HTH
 

Attachments

Thank you so much!
 
I discoverd the following after trying your sample.

If any fields are set to required(yes) on a form and a user trys go to the next field , an error message pops up stating Cant move the focus to the control tbhidden.

When the required is set to No, it works perfectly!

I just thought I'd let you know in case didnt know.
 

Users who are viewing this thread

Back
Top Bottom