Help Debug Code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to force a new page programmatically on a group footer that I
created. The field expression is "=1", and property name is AssignmentGroup.

This is not working.
Reports![rptResume].Section(AssignmentGroup).ForceNewPage = 1

Thanks in advance!

Dwight
 
Dwight said:
I am trying to force a new page programmatically on a group footer that I
created. The field expression is "=1", and property name is AssignmentGroup.

This is not working.
Reports![rptResume].Section(AssignmentGroup).ForceNewPage = 1


I've had trouble with that too. Try placing a PageBreak
control at the top of the group footer section. You can
then control it by setting the control's Visible property.
 
Back
Top