Remove Picture From PictureBox At Run-Time

'Add 1 PictureBox to your form.
'Insert the following code to your form:

Private Sub Form_Load()
Picture1.Picture = LoadPicture("")
End Sub

Go Back