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!
Printable View
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!
Most definitely. Try this for each of the images:
Image1 and Label1 are just the default names. Use your names. That should do it for you.Code:Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.Caption = "Dork"
End Sub
That did it!
Thanks Bob.