Jim
2009-06-14 14:41:01 UTC
How do I insert a new page within a report using vb code.
I'm at the place in the report header where i want to do it but I don't
know how to insert the form feed
Private Sub PageHeader_Format(Cancel As Integer, FormatCount As Integer)
If Me.Pages > 0 Then
If GrpArrayPage(Me.Page) = 1 And (Me.Page Mod 2) = 0 Then
'==================================
'insert additional blank page here
'==================================
End If
End If
End Sub
Thanks in advance
Jim
I'm at the place in the report header where i want to do it but I don't
know how to insert the form feed
Private Sub PageHeader_Format(Cancel As Integer, FormatCount As Integer)
If Me.Pages > 0 Then
If GrpArrayPage(Me.Page) = 1 And (Me.Page Mod 2) = 0 Then
'==================================
'insert additional blank page here
'==================================
End If
End If
End Sub
Thanks in advance
Jim