B Brian James Feb 16, 2007 #1 Is there a way I can get the file "Date Modified" information to show up in my report? Thanks
T tina Feb 17, 2007 #2 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
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