Mouse roll over

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form with a few command buttons. Each command button is labeled
with a general statement that describes the attached form. I would like to
create a more detailed description that pops up when the mouse moves over the
command button. I have tried a MouseOver with an Event procedure that sets
the visible property of a text box (containing the detailed description) to
true. This turns on the text box, but the text says, "#Name?" and the text
box does not disappear when the mouse moves off the command button. Any
suggestions? My simple MouseOver code is as follows:

Private Sub Command9_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)

Text23.Visible = True

End Sub
 
you don't want a 'text box' but a 'label.' a text box looks for a formula or
a field; a label is just words. why they called it a text box i'll never
know. hope this helps.

-ih
 

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