Hi Thomas,
I'm not sure if I understand your question 100%, but here's what I think you're saying.
You have a parent table (let's call it "User").
There is a related table (let's call it "Photos") which contains many records for each User.
(the record contains the path to the image on disk.)
You'd like to make a browse on Photos where each row of the browse is 5 photos wide?
yes, you can do this.
Regarding thumbnails - there are a few approaches to this. One is to store pre-thumnailed versions of each image. This is obviously the fastest. The other is to generate a thumbnail of the image on the fly. You can do this using a normal Clarion Image library - something like ImageEx or FreeImage should do fine.
cheers
Bruce