Looping through each page to be displayed in a DataReport, can this be done?
e.g.
I have a report called rptClients and a database called
I want to generate a report whose pages will have data assigned through a loop.
e.d
While NOT rs.EOF
With rptClients.Sections("Section1")
.Controls("Name").Text = rs.Fields("Name").Value
.Controls("Address").Text = rs.Fields("Address").Value
.Controls("Telephone").Text = rs.Fields("Telephone").Value
.Controls("ContactPerson").Text = rs.Fields("ContactPerson").Value
rptClients.Movenext ' Not that its the actual function, but is there an equivalent function that allows us to move to the next report page??
rs.MoveNext
End With
Loop
rptClients.Show

