If their little images it's better to put them into one graphic, load that, then grab each image individually. It takes a lot of work but in the long run it's easy to add new images and use them. Also it cuts down on the files which is always a plus for any project.
` Make 100 images (this is where you just use "load image")
Image=1
for y=1 to 400 step 41
for x=1 to 400 step 41
ink rgb(rnd(255),rnd(255),rnd(255)),0
box x,y,x+40,y+40
ink rgb(255,255,255),0
center text x+20,y+12,str$(Image)
inc Image
next x
next y
` Grab images
Image=1
for y=1 to 400 step 41
for x=1 to 400 step 41
get image Image,x,y,x+40,y+40,1
inc Image
next x
next y
` Paste images to the screen
cls
do
paste image rnd(99)+1,rnd(640),rnd(480),1
loop
wait key