Hi,

First of all: i am quite new to VBA so in my code may be some errors, but it works for me.
I have made a form with 2 multipages. I already have the lines to print both multipages.
The problem is that it will be handled as 2 separate prints.

My code is:
Private Sub cmdPrintform_Click()

cmdPrint.Visible = False

For i = 0 To 1
On Error Resume Next
Me.MultiPage1.Value = i
Me.PrintForm
Next

cmdPrint.Visible = True

End Sub

I want to have both multipages printed on one page (which also means to adjust the size).
Another solution might be to have it double printed as one print request.
I have been checking on internet already but cannot find a proper solution so far.
It's important because both multipages are related and having 2 prints is not very professional.
Hope you can help me out.

Thanks in advance.

Remko.