I would like to be able to view the creationdate of at table im my Access database. Until recently this worked fine in my testdatabase, with an unbound txtBox on a form like this:
Rowsource:
Code:
SELECT msysobjects.DateCreate FROM msysobjects WHERE (((msysobjects.Name)="tblDummy") AND ((msysobjects.Type)=1));
But now I have split my database into a Backend (BE - only tables) and a frontend (FE - forms, queries, reports, VBA) with links to the BE-tables. This works fine with everything, except for the txtBox.
What would be the correct syntax to use for this?
I guess there might be a better way to do this. Is it possible to Write a sub that checks the creation date of the table and creates another table in my BE with this data? This new table (eg. tblDataCreated with only one tuple) could be linked to my frontend Ok.
\AccessFanatic