import objects

abenitez77

Registered User.
Local time
Today, 15:24
Joined
Apr 29, 2010
Messages
141
I want to export different objects (i.e. modules, reports,tables, queries...) from another ms access application. How can I list the objects so I can pick from them and then import them. I know ms access has a wizard and I am looking to do the same but a little different because I have an application that I want to filter my objects by a criteria.
 
Check out the hidden system table called MSysObjects. There is a record in that table for every object in your database, and it'd be easy to use that record source for a user interface selection tool.

For simplicity, create a query with this text . . .
Code:
SELECT * FROM MSysObjects
. . . and just open that query, and you can see what I'm talking about.

Hope this helps,
 
You should Import the objects into the other DB not exporting them.
From the other DB use Import, select the DB you want to Import from and select the objects you want to Import.
 
Check out the hidden system table called MSysObjects. There is a record in that table for every object in your database, and it'd be easy to use that record source for a user interface selection tool.

For simplicity, create a query with this text . . .
Code:
SELECT * FROM MSysObjects
. . . and just open that query, and you can see what I'm talking about.

Hope this helps,

Yes, this is very helpful. Thanks!
 

Users who are viewing this thread

Back
Top Bottom