labanTek,
Here's a registry hack that will disable the "importing" box:
HKEY_LOCAL_MACHINE\Software\Microsoft\ Shared Tools\Graphics Filters\Import\JPEG\Options
Change the ShowProgressDialog key value to "No"
NYMT,
You probably DO NOT want to load a bunch of images into your database. You should try loading 10 or 20, and see how much the DB grows, and then project that to the total number of pictures you are planning on loading. If you do load them into the DB, remember to save the native image files because it's a pain in the butt to extract the objects back out into image files.
As far as storing file paths in a table, then rendering them on the fly, all you need to do is, in the onCurrent event of the form (when you change records), just open a recordset with the appropriate image file paths in it, then set the imagebox.picture property to the appropriate file path. If you have multiple pictures for a single classification, you can add "next" and "back" buttons to the form, which navigate through the recordset.
It sounds more complicated than it is...
Good Luck,
Tranman