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
 

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

Back
Top