Hi and thanks for the help,
I wasnt able to make blank page apear with inserting a frame in groupsection:after and setting this frames pagebreakbefore = true.
However, I did get this to work in one report
1) In the after frame create a 2nd frame with Size of Height = 0" ,Width = 0"
2) Override the finish method of the 2nd content frame:
Sub Finish( )
Super::Finish( )
' Insert your code here
Dim apageno as String
apageno = Getpagelist().getcurrentpage().getpagenumber()
if apageno mod 2 <> 0 then
getpagelist().needheight(9 * 1440) ' this inserts a new page
end if
End Sub
On a different report the above code did not work I was abel to insert a blank page another way
1) In the Before Group Section I set the Frames Page Break Before to True and it worked.