VBSlammer
Thanks for your reply.
I have tried the following which by all reasoning, should work:
Private Sub Form_Load()
Dim tdf As TableDef
Dim db As Database
Set db = Currentdb()
Set tdf =db.TableDefs("CreditLimits"

'Linked table name
Me.txtDate = tdf.DateCreated 'Box for creation date
End Sub
When I run thei I get:
"Compile Error: Can't find project or Library"
Have checked references and all look OK. What do you think is goinfg wrong?
Meanwhile, following does work (gets date of underlying linked file):
Private Sub Form_Load()
Dim fs,f,d, n
Set Fs=CreateObject("Scripting.FileSystemObject"

Set f= fs.GetFile("C:\CreditLimit.xls"

d = f.DateCreated
n = f.Name
Me.txtDate = d
Me.txtName = n
End Sub
What I am trying to accomplish is to allow user to compare the name and creation date of the linked file with the name and creation date of the underlying source file to verify that the correct files, tables and links are being used (ie, that the link is to the correct table).
1. Any idea why the TableDef option is not working?
2. Does yours show the creation date of the link, or the creation date of the underlying source file?
Thanks
JDTTEK