Per esempio questo codice visualizza 4 immagini una sopra l'altra:
codice:
Public Sub VisualizzaImmagini(Nome1 As String, Nome2 As String, Nome3 As String, Nome4 As String)
Dim Img1 As StdPicture, Img2 As StdPicture, Img3 As StdPicture, Img4 As StdPicture
Img1 = LoadPicture(Nome1)
Img2 = LoadPicture(Nome2)
Img3 = LoadPicture(Nome3)
Img4 = LoadPicture(Nome4)
Dim vTop As Integer
Me.PaintPicture Img1, 0, vTop
vTop = vTop + Img1.Height
Me.PaintPicture Img2, 0, vTop
vTop = vTop + Img2.Height
Me.PaintPicture Img3, 0, vTop
vTop = vTop + Img3.Height
Me.PaintPicture Img4, 0, vTop
vTop = vTop + Img5.Height
End Sub
Naturalmente puoi renderla + flessiblie usando cicli e matrici.