philkryder
asked on
MS ACCESS 2010 - ? dynamically link external tables ?
I'd like to be able do dynamically link to external tables in MS ACCESS 2010.
Consider a file structure like:
C:\myApp\Programs\myprogra m.accdb
C:\myApp\Input\inputfile1. ACCDB
C:\myApp\Input\inputfile2. ACCDB
...
C:\myApp\Input\inputfileNN .ACCDB
I'd like to be able to start myprogram.accdb and have an autoexec run some VB code to find all NN of the files in the INPUT folder
and dynamically link to them.
I want to be able to move the ENTIRE myApp folder to a new location and have it run there with no changes.
Thanks
Phil
Consider a file structure like:
C:\myApp\Programs\myprogra
C:\myApp\Input\inputfile1.
C:\myApp\Input\inputfile2.
...
C:\myApp\Input\inputfileNN
I'd like to be able to start myprogram.accdb and have an autoexec run some VB code to find all NN of the files in the INPUT folder
and dynamically link to them.
I want to be able to move the ENTIRE myApp folder to a new location and have it run there with no changes.
Thanks
Phil
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Jstreet relinker has source codes.
ASKER
Thanks everyone!
I ended up building a VB launcher that finds the Newest FrontEnd program, copies it to Local profile, and then launches it with a /CMD parm that points to the location of the backend database files. The front end then relinks all linked tables based on the parm.
Thanks much! Phil
I ended up building a VB launcher that finds the Newest FrontEnd program, copies it to Local profile, and then launches it with a /CMD parm that points to the location of the backend database files. The front end then relinks all linked tables based on the parm.
Thanks much! Phil
Phil,
Thanks for the update and your solution.
Thanks for the update and your solution.
ASKER