I'm rather new at Visual Basic and a problem has accrued. The problem I got is that the change of image in the picturebox is slow, to slow to be acceptable.
I've added the pictures to the resources and the event code looks like this:
Private Sub menuplay_hover(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles menuplay.MouseHover
menuplay.Image = Snake.My.Resources.menuplay_hover
End Sub
Private Sub menuplay_hoveroff(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles menuplay.MouseLeave
menuplay.Image = Snake.My.Resources.menuplay
End Sub
The original image that is assigned to the picturebox is called "menuplay".
When you hover over the picturebox it takes somewhat long to load the image "menuplay_hover" but when you leave the picturebox the image "menuplay" loads immediately.
I hope you understand my problem, if not I'll try to explain better.
Thanks!

Slow picturebox hover
ranger28
Ernesto OLLUSA
Jane Sathyan
Eric H.
Thanks!