yes you are crazy LOL 
I had no time to look in Chris' demo, and I guess it is a code to read the image names. so I'll try to go into the interface I think you should build guessing you will have to look at each couple of images, and make sure they are in the correct order.
as you said in some situations you will have more then 2 images for an item, so don't forget to have fields for these extra images in your table, based on your guess for the maximium number of images per item.
let's say for the example you have a maximum number of 5 images per an item.
create a form with a place for 5 images, and these buttons:
Next - this will be also be used to save the record
swap - to swap between the two images
add - to load new image into slots 3-5
remove - to remove an image from a slot
hwo this will work:
every next.click will move to the next record and read the next 2 images and show them on the form.
for most cases you will have only to use this button. only looking briefley at the images, saving and moving to the next item. this should be very fast.
add.click will add the next image (and increase the counter by 1) to the next free slot.
remove.click will remove the last image (and decrease the counter by 1) from the last used slot.
swap.click will swap between the images in the table and on the form.
one warning:
Access is not very good in saving resources and they are leaking out rather fast. you might have to restart your machine couple of times a day
I had no time to look in Chris' demo, and I guess it is a code to read the image names. so I'll try to go into the interface I think you should build guessing you will have to look at each couple of images, and make sure they are in the correct order.
as you said in some situations you will have more then 2 images for an item, so don't forget to have fields for these extra images in your table, based on your guess for the maximium number of images per item.
let's say for the example you have a maximum number of 5 images per an item.
create a form with a place for 5 images, and these buttons:
Next - this will be also be used to save the record
swap - to swap between the two images
add - to load new image into slots 3-5
remove - to remove an image from a slot
hwo this will work:
every next.click will move to the next record and read the next 2 images and show them on the form.
for most cases you will have only to use this button. only looking briefley at the images, saving and moving to the next item. this should be very fast.
add.click will add the next image (and increase the counter by 1) to the next free slot.
remove.click will remove the last image (and decrease the counter by 1) from the last used slot.
swap.click will swap between the images in the table and on the form.
one warning:
Access is not very good in saving resources and they are leaking out rather fast. you might have to restart your machine couple of times a day
Last edited: