Print three pages out : Print Dialog « GUI « VB.Net Tutorial






Imports System.Windows.Forms
Imports System.Drawing.Printing
Imports System.Drawing


public class PrintPagesOut
   public Shared Sub Main
        Application.Run(New Form1)
   End Sub
End class

Public Class Form1
    Private currentPageNumber As Integer = 1

    Private Sub pdocShapes_PrintPage(ByVal sender As System.Object, _
     ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles pdocShapes.PrintPage
        Select Case currentPageNumber
            Case 1  
                e.Graphics.DrawRectangle(Pens.Green, e.MarginBounds())
                e.HasMorePages = True
                currentPageNumber += 1
            Case 2  
                e.Graphics.DrawRectangle(Pens.Green, e.MarginBounds())
                e.HasMorePages = True
                currentPageNumber += 1
            Case 3  
                e.Graphics.DrawEllipse(Pens.Blue, e.MarginBounds())
                e.HasMorePages = False
                currentPageNumber = 1
        End Select
    End Sub
End Class
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class Form1
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.pdocShapes = New System.Drawing.Printing.PrintDocument
        Me.ppvShapes = New System.Windows.Forms.PrintPreviewControl
        Me.SuspendLayout()
        '
        'ppvShapes
        '
        Me.ppvShapes.AutoZoom = False
        Me.ppvShapes.Columns = 3
        Me.ppvShapes.Dock = System.Windows.Forms.DockStyle.Fill
        Me.ppvShapes.Document = Me.pdocShapes
        Me.ppvShapes.Location = New System.Drawing.Point(0, 0)
        Me.ppvShapes.Name = "ppvShapes"
        Me.ppvShapes.Size = New System.Drawing.Size(544, 228)
        Me.ppvShapes.TabIndex = 1
        Me.ppvShapes.Zoom = 0.18509803921568627
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(544, 228)
        Me.Controls.Add(Me.ppvShapes)
        Me.Name = "Form1"
        Me.Text = "UsePrintPreviewControl"
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents pdocShapes As System.Drawing.Printing.PrintDocument
    Friend WithEvents ppvShapes As System.Windows.Forms.PrintPreviewControl

End Class








14.64.Print Dialog
14.64.1.PrintSettings for a Print dialogPrintSettings for a Print dialog
14.64.2.Display Print dialog and get settings
14.64.3.Has more pagesHas more pages
14.64.4.Print three pages out