Yes. Create the form in your project, set all of it's properties and such the way you want them. Let's say it's named frmPicture.
You then create a new instance of the form by assigning it to an object variable.
Dim MyPictureForm as frmPicture
Set MyPictureForm = New frmPicture
And then you can show it or whatever you want to do, by referring to the object variable.
MyPictureForm.Show vbModal
and so on...
This way you can have multiple instances of the form open at one time.
If you need to capture events from these forms ( keypress, clicks, etc. ) then it becomes a little more complex.
Hope this helps,
Robert