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
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