Retrieve Table Information

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 
Back
Top