Dynamically displaying multiple images on runtime (VB)?

FOBSIDE

Platinum Member
Mar 16, 2000
2,178
0
0
I am trying to display multiple images from a database. I have two tables, one with people records and one with picture associations. I can't be sure how many images I might have for a people record. So I want to display all the images for a particular people record. How would I do that in VB?
 

jonmullen

Platinum Member
Jun 17, 2002
2,517
0
0
I dont quite understand, but you could do something like

rs0=<database query for the wanted pictures>
do while not rs0.eof
display picture
rs0.movenext
loop