[ Blue82 @ 07.05.2011. 15:57 ] @
Sta nije uredu sa ovim kodom? Zbog cega mi sve ispisuje na istoj strani umesto da ispise na 3 razlicite strane?

Code:

    Private Sub PrintDocument1_PrintPage(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage
      
        Dim i As Integer 
        For i = 1 To 3
            e.Graphics.DrawString(Label1.Text, Label1.Font, Brushes.Black, 100, 200)

            If i < 3 Then
                e.HasMorePages = True
            Else
                e.HasMorePages = False
            End If
        Next i

    End Sub

[ AMD guy @ 08.05.2011. 14:06 ] @
Citat:
As long as HasMorePages is set to true, the PrintDocument class will continue firing PrintPage events. However, it is up to you to track which page you are on, what data should be placed on each page, and what is the last page for which HasMorePage is not set to true.


http://en.csharp-online.net/Gr...ng_Recipes%E2%80%94Recipe_8_15