Dim pb As New PictureBox 'Create the PictureBox.
'Set the desired properties.
With pb
.Location = New Point(100, 20)
.Size = New Size(150, 150)
.Load("image path here")
'etc.
End With
'Add the control to the form.
Me.Controls.Add(pb)