How to write programs to Enumerate Metainformation

  • Thread starter Thread starter Siegfried Heintze
  • Start date Start date
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
 
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.
 
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
 
Back
Top