07-24-2012, 10:43 PM
The problem lies within your Left_Bullet class. Since the bullet inherits a picturebox, It already has the properties of Image, Width, and Height, so you do not need to make your own versions of those properties.
With that being said, you never actually set the image of the picturebox to be the bullet image. So in your constructor for the Left_Bullet class (Public Sub New()), you need to add this line of code:
[code2=vbnet]Me.Image = My.Resources.Player_Left_Bullet[/code2]
With that being said, you never actually set the image of the picturebox to be the bullet image. So in your constructor for the Left_Bullet class (Public Sub New()), you need to add this line of code:
[code2=vbnet]Me.Image = My.Resources.Player_Left_Bullet[/code2]