OK, well I tried to respond earlier, but my PC went down, so I have to re-type my explanation.
I kow you didn't intend to use queries here, but since (as you know) the table isn't in the database, it won't transfer the table, just the information in the current dB (which is the linking info) the easiest way I can think of to get it there is to make a duplicate table and Append the data into it. This is what the queries would be for. You run the queries which will make a copy of your linked table
inside your dB, and then run your "Transfer Database" module which will transfer all the real data to your new database from the copy.
Let's call your linked table
"TableA". Let's Call the table that you create withing the dB
"TableB". Delete all info in
"TableB", then append the info from
"TableA" into
"TableB". That way there is a version of the table within your dB. This one will work with "Transfer Database". Just put the code to run your Delete and Append queries right in front of you current module.
If I still haven't explained this right, let me know.
Kyle :
