Why cant a picturebox become bigger than the screen's size? My picture is bigger than the computer screen is and the picturebox cant show it all. When I make the picturebox the right size by using:
Code:
Picturebox.width = picturebox.picture.width
picturebox.height = picturebox.picture.height
it says that it "Can't create autoredraw image", so I set the autoredraw to false and my game doesnt work properly like that. I cant have the picturebox the wrong size, because when I use picturebox.point, and it does it outside of the picturebox,it doesnt return the right colour which is crucial to the game I am making.
How can I change this?