Begin Print : Print « GUI Windows Form « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » GUI Windows Form » PrintScreenshots 
Begin Print

/*
GDI+ Programming in C# and VB .NET
by Nick Symmonds

Publisher: Apress
ISBN: 159059035X
*/

using System;
using System.Drawing;
using System.IO;
using System.Drawing.Printing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace BeginPrint_c
{
    /// <summary>
    /// Summary description for BeginPrint.
    /// </summary>
    public class BeginPrint1 : System.Windows.Forms.Form
    {
    #region Class Local Storage
    PrintDocument Pd;
    Font Pf;
    TextReader file;
    int Pages = 0;
    #endregion

    private System.Windows.Forms.ComboBox cmbPrinters;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.Button cmdStartPrint;
    private System.Windows.Forms.ListBox lstPaper;
    private System.Windows.Forms.Label label2;
    private System.Windows.Forms.Label label3;
    private System.Windows.Forms.ListBox lstRes;

    private System.ComponentModel.Container components = null;

        public BeginPrint1()
        {
            InitializeComponent();

        }

        protected override void Disposebool disposing )
        {
            ifdisposing )
            {
                if (components != null
                {
                    components.Dispose();
                }
            }
            base.Disposedisposing );
        }

        #region Windows Form Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
      this.cmbPrinters = new System.Windows.Forms.ComboBox();
      this.label1 = new System.Windows.Forms.Label();
      this.cmdStartPrint = new System.Windows.Forms.Button();
      this.lstPaper = new System.Windows.Forms.ListBox();
      this.label2 = new System.Windows.Forms.Label();
      this.label3 = new System.Windows.Forms.Label();
      this.lstRes = new System.Windows.Forms.ListBox();
      this.SuspendLayout();
      // 
      // cmbPrinters
      // 
      this.cmbPrinters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.cmbPrinters.Location = new System.Drawing.Point(16192);
      this.cmbPrinters.Name = "cmbPrinters";
      this.cmbPrinters.Size = new System.Drawing.Size(25621);
      this.cmbPrinters.TabIndex = 0;
      // 
      // label1
      // 
      this.label1.Location = new System.Drawing.Point(16176);
      this.label1.Name = "label1";
      this.label1.Size = new System.Drawing.Size(25616);
      this.label1.TabIndex = 1;
      this.label1.Text = "Installed Printers";
      // 
      // cmdStartPrint
      // 
      this.cmdStartPrint.Location = new System.Drawing.Point(88224);
      this.cmdStartPrint.Name = "cmdStartPrint";
      this.cmdStartPrint.Size = new System.Drawing.Size(8832);
      this.cmdStartPrint.TabIndex = 2;
      this.cmdStartPrint.Text = "Start Print";
      this.cmdStartPrint.Click += new System.EventHandler(this.cmdStartPrint_Click);
      // 
      // lstPaper
      // 
      this.lstPaper.Location = new System.Drawing.Point(1624);
      this.lstPaper.Name = "lstPaper";
      this.lstPaper.Size = new System.Drawing.Size(25656);
      this.lstPaper.TabIndex = 3;
      // 
      // label2
      // 
      this.label2.Location = new System.Drawing.Point(188);
      this.label2.Name = "label2";
      this.label2.Size = new System.Drawing.Size(25616);
      this.label2.TabIndex = 4;
      this.label2.Text = "Paper Size";
      // 
      // label3
      // 
      this.label3.Location = new System.Drawing.Point(1688);
      this.label3.Name = "label3";
      this.label3.Size = new System.Drawing.Size(25616);
      this.label3.TabIndex = 6;
      this.label3.Text = "Printer Resolution";
      // 
      // lstRes
      // 
      this.lstRes.Location = new System.Drawing.Point(16104);
      this.lstRes.Name = "lstRes";
      this.lstRes.Size = new System.Drawing.Size(25656);
      this.lstRes.TabIndex = 5;
      // 
      // BeginPrint
      // 
      this.AutoScaleBaseSize = new System.Drawing.Size(513);
      this.ClientSize = new System.Drawing.Size(292273);
      this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                  this.label3,
                                                                  this.lstRes,
                                                                  this.label2,
                                                                  this.lstPaper,
                                                                  this.cmdStartPrint,
                                                                  this.label1,
                                                                  this.cmbPrinters});
      this.MaximizeBox = false;
      this.MinimizeBox = false;
      this.Name = "BeginPrint";
      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
      this.Text = "BeginPrint";
      this.Load += new System.EventHandler(this.BeginPrint_Load);
      this.ResumeLayout(false);

    }
        #endregion

        [STAThread]
        static void Main() 
        {
            Application.Run(new BeginPrint1());
        }

    private void BeginPrint_Load(object sender, System.EventArgs e)
    {
      Init();
    }

    private void Init()
    {
      foreach(String p in PrinterSettings.InstalledPrinters
        cmbPrinters.Items.Add(p);

      if cmbPrinters.Items.Count > )
        cmbPrinters.SelectedIndex = 0;

      //Add a few paper sizes to the list box
      lstPaper.Items.Add(PaperKind.A4.ToString());
      lstPaper.Items.Add(PaperKind.Letter.ToString());
      lstPaper.Items.Add(PaperKind.CSheet.ToString());

      //Add all the printer resolutions to the list box
      lstRes.Items.Add(PrinterResolutionKind.Custom.ToString());
      lstRes.Items.Add(PrinterResolutionKind.Draft.ToString());
      lstRes.Items.Add(PrinterResolutionKind.High.ToString());
      lstRes.Items.Add(PrinterResolutionKind.Low.ToString());
      lstRes.Items.Add(PrinterResolutionKind.Medium.ToString());
    }

    private void cmdStartPrint_Click(object sender, System.EventArgs e)
    {
      try
      {
        file = new StreamReader("Test.txt");
        try
        {
          //Create the document and give it a somewhat unique name
          Pd = new PrintDocument();
          Pd.DocumentName = DateTime.Now.Millisecond.ToString();

          //Install event handlers
          Pd.BeginPrint += new PrintEventHandler(this.BeginPrint);
          Pd.PrintPage  += new PrintPageEventHandler(this.PagePrint);
          Pd.EndPrint   += new PrintEventHandler(this.EndPrint);

          // Print the document.
          Pd.Print();
        }
        finally
        {
          file.Close();
          if (Pd != null)
            Pd.Dispose();
          if (Pf != null)
            Pf.Dispose();
        }
      }
      catch(Exception ex
      
        MessageBox.Show(ex.Message);
      }
    }

    private void BeginPrint1(object sender, PrintEventArgs ev)
    {
      PageSettings Psettings = Pd.DefaultPageSettings;

      //Initialize the font
      Pf = new Font("Times New Roman"10);

      Pd.PrinterSettings.PrinterName = cmbPrinters.SelectedItem.ToString();

      foreach (PaperSize ps in Pd.PrinterSettings.PaperSizes)
      {
        if (ps.PaperName == lstPaper.SelectedItem.ToString())
        {
          Psettings.PaperSize = ps;
          break;
        }
      }

      foreach (PrinterResolution pr in Pd.PrinterSettings.PrinterResolutions)
      {
        if (pr.Kind.ToString() == lstRes.SelectedItem.ToString())
        {
          Psettings.PrinterResolution = pr;
          break;
        }
      }

      //Make 1/4 inch margins all around
      Psettings.Margins = new Margins(25252525);
      Pd.DefaultPageSettings = Psettings;
      //Reset the pages 
      Pages = 0;
    }

    private void EndPrint(object sender, PrintEventArgs ev)
    {
      Pf.Dispose();
    }

    // The PrintPage event is raised for each page to be printed.
    private void PagePrint(object sender, PrintPageEventArgs ev
    {
      float linesPerPage = 0;
      float yPos =  0;
      int   count = 0;
      float leftMargin = ev.MarginBounds.Left;
      float topMargin = ev.MarginBounds.Top;
      String line = null;
            
      //Keep track of pages as they are printed
      if (++Pages == 2)
      {
        try
        {
          ev.PageSettings.Landscape = true;
        }
        catch (Exception ex)
        {
          ev.PageSettings.Landscape = false;
        }
      }
      else
        ev.PageSettings.Landscape = false;

      // Calculate the number of lines per page.
      linesPerPage = ev.MarginBounds.Height / Pf.GetHeight(ev.Graphics);

      // Iterate over the file, printing each line. Use a basic StringFormat
      while (count++ < linesPerPage && ((line=file.ReadLine()) != null)) 
      {
        yPos = topMargin + (count * Pf.GetHeight(ev.Graphics));
        ev.Graphics.DrawString (line, Pf, Brushes.Black, 
                                leftMargin, yPos, new StringFormat());
      }

      // If more lines exist, print another page.
      if (line != null
        ev.HasMorePages = true;
      else 
        ev.HasMorePages = false;
    }
    }
}


           
       
Related examples in the same category
1.Control PrintControl Print
2.Simple Report PrinterSimple Report Printer
3.Define Print SettingsDefine Print Settings
4.Print Dialogs
5.Print EventsPrint Events
6.UI PrintUI Print
7.Basic Printing
8.Grid PrintingGrid Printing
9.Printer Caps 1
10.Printer Caps 2Printer Caps 2
11.Printer Caps 3Printer Caps 3
12.Printer Caps 4Printer Caps 4
13.Printer Caps 5Printer Caps 5
14.Printer Caps 6Printer Caps 6
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.