How can you find out if a record is the last record on a report page?
I've tried using things like:
But...[ol][li]The record does not continue over to the next page[/li]
[li]The MoveLayout property specifies whether Microsoft Access should move to the next printing location on the page. Read/write Boolean. [tt]-This references for EVERY record, and every one is TRUE![/tt][/li]
[li]The PrintSection property specifies whether a section should be printed. Read/write Boolean. [tt]- They all should be printed, so all records are TRUE[/tt][/li]
[/ol]
I hope someone will be able to help me with this.
Thanks for your time,
Aubs
I've tried using things like:
Code:
If Reports("rptElements-NonCompliant").Section("Detail").WillContinue = False
If Reports("rptElements-NonCompliant").MoveLayout = True
If Reports("rptElements-NonCompliant").PrintSection = True
But...[ol][li]The record does not continue over to the next page[/li]
[li]The MoveLayout property specifies whether Microsoft Access should move to the next printing location on the page. Read/write Boolean. [tt]-This references for EVERY record, and every one is TRUE![/tt][/li]
[li]The PrintSection property specifies whether a section should be printed. Read/write Boolean. [tt]- They all should be printed, so all records are TRUE[/tt][/li]
[/ol]
I hope someone will be able to help me with this.
Thanks for your time,
Aubs