Print Preview Control : Print Preview « GUI « VB.Net






Print Preview Control

Imports System
Imports System.Data
Imports System.Collections
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Data.SqlClient

public class MainClass
   Shared Sub Main()
       Dim form1 As Form = New Form1
       Application.Run(form1)
   End Sub
End Class


Public Class Form1
    Private m_PageNum As Integer = 1

    Private Sub pdocShapes_PrintPage(ByVal sender As System.Object, _
     ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles pdocShapes.PrintPage
        Select Case m_PageNum
            Case 1  ' Page 1. Draw a rectangle in red.
                e.Graphics.DrawRectangle(Pens.Red, e.MarginBounds())
                e.HasMorePages = True
                m_PageNum += 1
            Case 2  ' Page 2. Draw a rectangle in green.
                e.Graphics.DrawRectangle(Pens.Green, e.MarginBounds())
                e.HasMorePages = True
                m_PageNum += 1
            Case 3  ' Page 3. Draw an rectangle in blue.
                e.Graphics.DrawRectangle(Pens.Blue, e.MarginBounds())
                e.HasMorePages = False
                m_PageNum = 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

           
       








Related examples in the same category

1.Print Preview Dialog Demo
2.Print Preview, print dialog for a custome PiePrint Preview, print dialog for a custome Pie
3.Print preview your document before printPrint preview your document before print
4.Print Preview and Print
5.Simple Demo for Print Preview Control