To add from a Control Array: Put the folowing code into a CommandButton. Every time you press it, it will load a new Image and position it underneath the previous one.
Code:
Private Sub Command1_Click()
'Get the next Index
I = Image1.Count
'Load the Image
Load Image1(I)
'Move it underneath the last Image
Image1(I).Move 0, Image1(I).Height * I
'Make it Visible
Image1(I).Visible = True
End Sub
To add them at Runtime, use this code, but it will only work with VB6.
Code:
Private Sub Command1_Click()
Controls.Add "VB.Image", "Image1"
Me!Image1.Move 0, 0
Me!Image1.Picture = LoadPicture("C:\MyPicture.bmp")
Me!Image1.Visible = True
End Sub