Access 2002 Report - Date Modified

B

Brian James

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

Thanks
 
T

tina

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

Top