how do i make so tht my picture box changes its image when my my mouse hovers over it
Code:
Private Sub PictureBox1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseHover
PictureBox1.ImageLocation = "C:\test.png"
End Sub
Beat y'all again xD
Dammit blubb, i sign in all ready to help people and you pull this shit on me!
</3
Originally Posted by Blubb1337
Code:
Private Sub PictureBox1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseHover
PictureBox1.ImageLocation = "C:\test.png"
End Sub
Beat y'all again xD
or....
[php] Private Sub PictureBox1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseHover
PictureBox1.Image = my.resource.IMAGENAMEHERE
End Sub[/php]
Originally Posted by Blubb1337
Code:
Private Sub PictureBox1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseHover
PictureBox1.ImageLocation = "C:\test.png"
End Sub