Click here to Skip to main content
Licence 
First Posted 7 Dec 2005
Views 97,862
Bookmarked 37 times

Choosing a printer when printing from Crystal Reports in C#

By | 7 Dec 2005 | Article
How to choose a printer when printing from Crystal Reports in C#.

Introduction

I use Crystal Reports 9 in my project. I once encountered an issue with printing a report. Then, I searched the Internet and found a code from this website that showed me how to send a report to the printer without previewing it, but the code did not allow me to choose the printer. In this article, I have customized the code to use a Print Dialog to choose the printer.

Using the code

I use the Print Dialog to get the printer name. Then, I assign it to the report. To print the report, I use the method:

crReportDocument.PrintToPrinter(nCopy, false, sPage, ePage);

to send the data from the report to the printer.

The code below shows how to choose the printer to print the report:

private void button2_Click(object sender, System.EventArgs e)
{
    //Open the PrintDialog
    this.printDialog1.Document = this.printDocument1;
    DialogResult dr = this.printDialog1.ShowDialog();
    if(dr == DialogResult.OK)
    {
        //Get the Copy times
        int nCopy = this.printDocument1.PrinterSettings.Copies;
        //Get the number of Start Page
        int sPage = this.printDocument1.PrinterSettings.FromPage;
        //Get the number of End Page
        int ePage = this.printDocument1.PrinterSettings.ToPage;
        //Get the printer name
        string PrinterName = this.printDocument1.PrinterSettings.PrinterName;

        crReportDocument = new ReportDocument();
        //Create an instance of a report
        crReportDocument = new Chart();
        try
        {
            //Set the printer name to print the report to. By default the sample
            //report does not have a defult printer specified. This will tell the
            //engine to use the specified printer to print the report. Print out 
            //a test page (from Printer properties) to get the correct value.

            crReportDocument.PrintOptions.PrinterName = PrinterName;


            //Start the printing process. Provide details of the print job
            //using the arguments.
            crReportDocument.PrintToPrinter(nCopy, false, sPage, ePage);

            //Let the user know that the print job is completed
            MessageBox.Show("Report finished printing!");
        }
        catch(Exception err)
        {
            MessageBox.Show(err.ToString());
        }
    }
}

Points of Interest

I think the important thing in this article is it shows how to get the names of printers in your computer or your local network.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Le Minh Dat



Vietnam Vietnam

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questioncrustal reports PinmemberpanduRajju2:13 7 Apr '12  
Questioncrystal reports PinmemberpanduRajju2:12 7 Apr '12  
QuestionHi! Pinmembertrunduong16:35 6 Apr '12  
GeneralGreat topic... and a suggestion PinmemberJRINC3:07 9 Feb '11  
GeneralMy vote of 5 PinmemberKunal Chachad11:04 9 Aug '10  
GeneralThis topic very stupid Pinmembertaithien1:11 4 Jun '08  
GeneralRe: This topic very stupid PinmemberJ Keith Montz5:26 28 Apr '10  
GeneralRe: This topic very stupid PinmemberDarkBintje6:53 7 Jun '10  
GeneralRe: This topic very stupid PinmemberJRINC2:23 9 Feb '11  
GeneralWindows form design Pinmembersuki217920:38 30 Aug '07  
GeneralRe: Windows form design PinmemberJRINC3:01 9 Feb '11  
GeneralResize width and height of Crystal Report Pinmemberthanhtc24917:10 15 Apr '07  
GeneralNetwork Printer Pinmemberfarhan14023:24 6 Apr '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 7 Dec 2005
Article Copyright 2005 by Le Minh Dat
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid