Brinuz is right...there are two events for handling this. 1 is when you take your mouse over the picturebox and second is when you leave your mouse from the pbox.
Here's the code for what you are trying to do:
[php]Private Sub PictureBox6_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseHover
PictureBox6.Image = NextGenMTs.My.Resources.Minimize
End Sub
Private Sub PictureBox6_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseLeave
PictureBox6.Image = Nothing
End Sub[/php]
Hope this helps !!
Here's the code for what you are trying to do:
[php]Private Sub PictureBox6_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseHover
PictureBox6.Image = NextGenMTs.My.Resources.Minimize
End Sub
Private Sub PictureBox6_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseLeave
PictureBox6.Image = Nothing
End Sub[/php]
Hope this helps !!

.

