Hey guys, when I mouse over a picture box, how do I make it change to another image, but the image is in the program resources.
How do I do this?
Printable View
Hey guys, when I mouse over a picture box, how do I make it change to another image, but the image is in the program resources.
How do I do this?
Handle the MouseEnter and MouseLeave events and set the PictureBox's Image property from the appropriate resource property, e.g.VB Code:
Me.PictureBox1.Image = My.Resources.MouseEnterImage
Awesome, thanks!