Access 2002 Report - Date Modified

  • Thread starter Thread starter Brian James
  • Start date Start date
B

Brian James

Is there a way I can get the file "Date Modified" information to show up in
my report?

Thanks
 
add the following code to the report's module, as

Private Function isModified(ByVal str As String) As String

isModified = CurrentProject.AllReports(str).DateModified

End Function

in report Design view, add an unbound textbox control and set its'
ControlSource property to

=isModified([Name])

make sure you don't have a field in the report's RecordSource called Name
(you shouldn't anyway, because Name is a reserved word in Access).

hth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top