I have a picture box that I want to use as a background image. The image i am pulling in is quite large and I want to scale it to fit the size of the user's screen. I have searched several threads but cannot get it to work! It gets cut off in places - the picture (which is way bigger than the box) is cut off by the size of the picturebox

I tried to do things like

picture1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight

or

picture1.Move 0, 0, screen.Width, screen.Height

but that makes it worse!
help!