In the Design View of your form, click on the "Image" button on your Toolbox. Place the control on your form...it will bring up a file selection box for you to specify an image file. Select an appopriate starting image. Name the control "myImage"
I was assuming that you wanted to allow your users to put an image on the form, in runtime...am I right? If so, you can just add a button to your form, and in the OnClick event of that button, add the following line of code...
Me.myImage.Picture = Inputbox("Enter the path to your image")