PDA

Click to See Complete Forum and Search --> : Mouse Over Event


Dan0331
Jan 26th, 2000, 04:55 AM
I have a basic form with 6 images. When someone moves thier mouse over an image, I want a label below the images to give them a little information about thier choice, just like a Java mouseover.

How is this possible in VB?

Please help!

Bob Baddeley
Jan 26th, 2000, 06:34 AM
Most definitely. Try this for each of the images:


Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.Caption = "Dork"
End Sub


Image1 and Label1 are just the default names. Use your names. That should do it for you.

Dan0331
Jan 26th, 2000, 06:42 AM
That did it!

Thanks Bob.