Hi jascard,
You could try this, for example when loading the form:
Code:
Dim s As Size = ZoomPictureBox1.ClientSize
ZoomPictureBox1.Image = New Bitmap(ZoomPictureBox1.Image, s.Width, s.Height)
Is that the effect you are looking for?

BB