ineedhelplease
Technical User
I am able to get the names of all the tables in my access database using the following VBA:
Dim lpTblDef As TableDef
With CurrentDb
For Each lpTblDef In .TableDefs
MsgBox lpTblDef.Properties("name")
Next lpTblDef
End With
I am not able to figure out how to get the modify date or create date for each table. Any help with this would be appreciated.
Thank you.
Dim lpTblDef As TableDef
With CurrentDb
For Each lpTblDef In .TableDefs
MsgBox lpTblDef.Properties("name")
Next lpTblDef
End With
I am not able to figure out how to get the modify date or create date for each table. Any help with this would be appreciated.
Thank you.