Microsoft Access Object Definition

C

charliz

I used to be able to save a Microsoft Access Object
Definition as a table in Access97. However, in Access
2000 it doesn't let me do that anymore. Any suggestions?
 
D

Duane Hookom

It is always automatically saved in a table for you. You need to link to it.
On my Windows XP system the table is located in:
C:\Documents and Settings\Duane Hookom\Application
Data\Microsoft\Access\ACWZUSRT.MDT;TABLE=doc_tblObjects
To create a query of tables, fields, data types, and sizes, you can create a
table with the following sql:

SELECT doc_tblObjects.Name AS TableName,
doc_tblObjects_1.Name AS FieldName,
doc_tblObjects_1.Extra2 AS FieldType,
doc_tblObjects_1.Extra3 AS FieldSize
FROM doc_tblObjects AS doc_tblObjects_1
INNER JOIN doc_tblObjects
ON doc_tblObjects_1.ParentID = doc_tblObjects.ID
WHERE (((doc_tblObjects_1.TypeID)=11));

_____________
Duane Hookom
MS Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top