How to write programs to Enumerate Metainformation

S

Siegfried Heintze

I've noticed that MSAccess allows me to enter a lot of meta information
including comments for each field and table and a form field type for each
field.

How do I programmatically access this information. It does not seem to be
available from ADOX.
Thanks,
Siegfried
 
D

Dan Artuso

Hi,
You can do it with DAO.
Go through the Properties of each TableDef in the
TableDefs collection and olso each Field in the TableDef's
field collection.
 
S

Siegfried Heintze

Do you know the name of the DLL that implements DAO? Is it a COM DLL?

I want to use C# or C++.

Thanks,
Siegfried
 

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