Add Picture To PictureBox At Run-Time

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

Private Sub Form_Load()
'Replace the 'c:\MyPic.bmp' below with your picture file name
Picture1.Picture = LoadPicture("c:\MyPic.bmp")
End Sub

Go Back