Results 1 to 3 of 3

Thread: Mouse Over Event

  1. #1

    Thread Starter
    Member
    Join Date
    Nov 1999
    Location
    alb, nm 87112
    Posts
    56

    Post

    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!

  2. #2
    Hyperactive Member
    Join Date
    Sep 1999
    Posts
    305

    Post

    Most definitely. Try this for each of the images:

    Code:
    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.

  3. #3

    Thread Starter
    Member
    Join Date
    Nov 1999
    Location
    alb, nm 87112
    Posts
    56

    Post

    That did it!

    Thanks Bob.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width