If you want to do the extra work then you can do something like this.
Code:
Dim fd As FileDialog
Dim strDefaultDir As String
Dim strFolderPath As String
'Set the default directory
strDefaultDir = "C:\"
Set fd = Application.FileDialog(msoFileDialogFilePicker)
'Get the user's selection and add it to the import field, which will be used during the import ops.
With fd
.InitialFileName = strDefaultDir
'Ensure that a selection was made
If .Show = -1 Then
Me.txtFileLoc = fd.SelectedItems(1)
Else
MsgBox "You must select a file.", vbInformation
Exit Sub
End If
End With
You could just create a table and have "txtFileLoc" as a field in your table and another field for the date with the current date set as the default value. Then it would be easy to manipulate it however you wanted.

Originally Posted by
kaylachris
I know of the attachment field in '07 but I was looking for a solution a bit more sophisticated. I want only 1 file to be displayed at any time (the most current version of the file). The attachment field in '07 works wonders but it requires you to manually delete each old file link... I'm trying to avoid someone accidently deleting the most current version of an attachment.