I want to develop a script to audit the last time a Microsoft Access table was modified/updated, and I got the following code, but I receive an error

-----------------------------------------------
VBStart
Sub LastTimeModified
'This is VBScript code
Set Cat = CreateObject("ADOX.Catalog")
'The ODBC Connection is called Transmissions
Cat.ActiveConnection = "Transmissions"
'I want to know the last time table TransFor was modified
LastTime = Cat.Tables("TransFor").DateModified
MsgBox LastTime
Set Cat = Nothing
End Sub
VBEnd
VBRun>LastTimeModified
---------------------------------------------
How can I fix my code to get the last time a table was modified?
Thanks,
Salvador Hernandez