Retrieve Table Information

A

Alan

Is it possible to retrieve table attributes such as Modified Date and Created
Date to be displayed within a text box on a form ??

Many thanks in advance
 
O

Ofer

Try this

Me.TextBoxName=Application.CurrentDB.TableDefs("Insert Table
Name").DateCreated
Me.TextBoxName=Application.CurrentDB.TableDefs("Insert Table
Name").LastUpdated

You have more information you can retrieve, after the table name, when you
type the dot, youll get a list of attributes
 
Top