Has more pages : Print Dialog « GUI « VB.Net Tutorial






Has more pages
Imports System.Windows.Forms
Imports System.Drawing

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


Public Class Form1
    Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrint.Click
        If pdlgRectangle.ShowDialog() = Windows.Forms.DialogResult.OK Then
            pdocRectangle.Print()
        End If
    End Sub

    Private Sub PrintDocument1_PrintPage(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles pdocRectangle.PrintPage
        e.Graphics.DrawRectangle(Pens.Black, 100, 100, 600, 300)
        e.HasMorePages = False
    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.pdlgRectangle = New System.Windows.Forms.PrintDialog
        Me.pdocRectangle = New System.Drawing.Printing.PrintDocument
        Me.btnPrint = New System.Windows.Forms.Button
        Me.SuspendLayout()
        '
        'pdlgRectangle
        '
        Me.pdlgRectangle.AllowSomePages = True
        Me.pdlgRectangle.Document = Me.pdocRectangle
        '
        'btnPrint
        '
        Me.btnPrint.Location = New System.Drawing.Point(112, 40)
        Me.btnPrint.Name = "btnPrint"
        Me.btnPrint.Size = New System.Drawing.Size(64, 24)
        Me.btnPrint.TabIndex = 1
        Me.btnPrint.Text = "Print"
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(292, 134)
        Me.Controls.Add(Me.btnPrint)
        Me.Name = "Form1"
        Me.Text = "UsePringDialog"
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents pdlgRectangle As System.Windows.Forms.PrintDialog
    Friend WithEvents pdocRectangle As System.Drawing.Printing.PrintDocument
    Friend WithEvents btnPrint As System.Windows.Forms.Button

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