Dec 4, 2002 #1 djdidge Programmer May 9, 2001 65 GB Using ADO how can i get the "modified date" of a table? )
Dec 4, 2002 1 #2 sebseb12 Programmer Dec 3, 2002 18 FR Yes you can get it (with ACCESS) dim adoMain as new adodb.recordset set adoMain = conmain.OpenSchema(adSchemaTables) do while not adomain.eof debug.print adoMain("TABLE_NAME" & " - " & adoMain("DATE_MODIFIED" adomain.movenext loop Let try.... SEE you Soon Upvote 0 Downvote
Yes you can get it (with ACCESS) dim adoMain as new adodb.recordset set adoMain = conmain.OpenSchema(adSchemaTables) do while not adomain.eof debug.print adoMain("TABLE_NAME" & " - " & adoMain("DATE_MODIFIED" adomain.movenext loop Let try.... SEE you Soon
Dec 10, 2002 Thread starter #3 djdidge Programmer May 9, 2001 65 GB Seems fine ta ) Upvote 0 Downvote