David Emerson
newsgrps at dalyn.co.nz
Sun Jul 23 14:21:24 CDT 2006
I am wanting to loop through all reports to find out what the paper size property is set to. Does anyone have any code that will do this? This is what I have so far: Dim strList As String Dim x As Integer For x = CurrentDb.Containers!Reports.Documents.Count - 1 To 0 Step -1 'Add paper size details here 'strList = CurrentDb.Containers!Reports.Documents(x).Name & {paper size} ";" & strList Next MsgBox strList