stephenj789
Technical User
Hello, I would like to have a file qualified by its modified date. Here is a sample of the code I would like to use:
The code above does not work, I have just included it as a sample. What I would like to do is use the file system object to qualify a file by its modified date, but I don't know how to do it. I was unable to find any guidance for this online. Using the line:
...doesn't work.
I am using Access 97
Code:
Dim answer As Integer
Dim f As Object, fso As Object
Set fso = CreateObject("Scripting.FileSystemObject")
f = <directory path> <filename>
If Now - f.DateLastModified > 7 Then
answer = MsgBox("The file you selected is over 1 week old, are you sure you have the correct file?", vbYesNo, "Old File")
If answer = vbYes Then
Elseif answer = vbNo Then
Exit Sub
End If
Else
End If
The code above does not work, I have just included it as a sample. What I would like to do is use the file system object to qualify a file by its modified date, but I don't know how to do it. I was unable to find any guidance for this online. Using the line:
Code:
f = fso.Getfile(<directory path> <filename>)
...doesn't work.
I am using Access 97