hi, can you help me.

How can i print each checked items on new page? and only 2 items in one page?

I only make with one items and if i check two items then print second on top first?

here is my code
Code:
Dim font As New Font(System.Drawing.FontFamily.GenericSerif, 12, FontStyle.Bold)

        Dim x As Integer

        For x = 0 To Me.ListView1.Items.Count - 1

            If ListView1.Items(x).Checked = True Then
                e.Graphics.DrawString(ListView1.Items(x).Text, font, Brushes.Black, 230, 102)
                e.Graphics.DrawRectangle(Pens.Green, 50, 50, 150, 150)
            End If
        Next
thanks for help