refer to an access tables properties

  • Thread starter Thread starter DavidSherwood
  • Start date Start date
D

DavidSherwood

How do you refer to a table's property sheet values? I thought they would be
in the AccessObject's Properties collection, but the tables haven't any.
 
Use DAO code to loop through the Properties of the TableDef.

You may also want to loop through the Properties of each Field in the
TableDef.

If this sounds new, see the TableInfo() example here:
http://allenbrowne.com/func-06.html
It shows how to loop through the fields, and read the Description property
for each one.
 
Back
Top