One way would be to check the back-end db's Last Modified time stamp.
You can get it through something like:
extfile = "Drive:\Folder\FileName of BackEnd.mdb"
Set fldr = CreateObject("Scripting.FileSystemObject")
Set fl = fldr.GetFile(extfile)
lastmodif = fl.DateLastModified
HTH,
Nikos
> I have an application that looks up a number in a (backend) database and
> then closes the connection.
[quoted text clipped - 3 lines]
> regards
> reidarT