B
bhammer
There must be a better way. This works, but seems too much. Anybody have any
elegant ideas?
tblBigListOfImages is to be appended to periodically with the records in
tblNewImages (a make-table resulting from cmdBrowse). But first, I need to
make sure that there are no duplicate FileNames.
To do this I have to use three queries and two new tables (messy).
So I have cmdCheckForDuplicates that:
1. Runs a make table query, qmtCopyBigListOfImages, then
2. Runs qappCombineOldAndNew to append all the records from tblNewImages to
the new tblOldAndNewImages, then
3. Runs qmtDuplicates to make another table that contains the common
Filenames in the tblCombineOldAndNew.
Whew!
Thoughts?
elegant ideas?
tblBigListOfImages is to be appended to periodically with the records in
tblNewImages (a make-table resulting from cmdBrowse). But first, I need to
make sure that there are no duplicate FileNames.
To do this I have to use three queries and two new tables (messy).
So I have cmdCheckForDuplicates that:
1. Runs a make table query, qmtCopyBigListOfImages, then
2. Runs qappCombineOldAndNew to append all the records from tblNewImages to
the new tblOldAndNewImages, then
3. Runs qmtDuplicates to make another table that contains the common
Filenames in the tblCombineOldAndNew.
Whew!
Thoughts?