Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've searched a lot on all the forums, after referring few articles, I came up with this code. I'm stuck with this, Referred following links:

CSharp Overwriting the previous page in printing

http://www.codeproject.com/Articles/9282/Simplified-NET-Printing-in-C

http://www.c-sharpcorner.com/UploadFile/dbeniwal321/printing-multiple-pages-in-C-Sharp/

My code is:

void print_Dictation()
        {
            if (app_code.GlobalData.g_notes_text.Length > 0)
            {
                System.Drawing.Printing.PrintDocument f = new System.Drawing.Printing.PrintDocument();

                PrintDialog theDialog = new PrintDialog();

                System.Drawing.Printing.PrintDocument thePrintDocument = new System.Drawing.Printing.PrintDocument();

                theDialog.Document = thePrintDocument;

                theDialog.ShowDialog();

                thePrintDocument.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(thePrintDocument_PrintPage);

                thePrintDocument.Print();
            }
            else
            {
                MessageBox.Show("There is nothing to print");
            }
        }

        void thePrintDocument_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
        {
            String sql = "Get_Patient_Notes";
            SqlCommand cmd = new SqlCommand(sql, mDB);
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.Parameters.AddWithValue("@Patient_Name", app_code.GlobalData.g_patient_name);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataTable dt = new DataTable();
            da.Fill(dt);
            float x, y;
            x = 50;
            y = 50;
            for (this.i = j; this.i < dt.Rows.Count; this.i++)
            {
                if (dt.Rows[i].ItemArray[2].ToString() == "Red")
                    e.Graphics.DrawString(dt.Rows[i].ItemArray[0].ToString(), this.Font, Brushes.Red, x,y, StringFormat.GenericTypographic);
                if (dt.Rows[i].ItemArray[2].ToString() == "Green")
                    e.Graphics.DrawString(dt.Rows[i].ItemArray[0].ToString(), this.Font, Brushes.Green, x, y, StringFormat.GenericTypographic);
                if (dt.Rows[i].ItemArray[2].ToString() == "Blue")
                    e.Graphics.DrawString(dt.Rows[i].ItemArray[0].ToString(), this.Font, Brushes.Blue, x, y, StringFormat.GenericTypographic);
                else
                    e.Graphics.DrawString(dt.Rows[i].ItemArray[0].ToString(), this.Font, Brushes.Black, x, y, StringFormat.GenericTypographic);
                y = y + 20;
                j = i + 1;
                if (y >= 850)
                {
                    e.HasMorePages = true;
                }
            }
        }

In the above code j and i are instance level class variables.

The text I am printing is of 3 to 4 pages.

The code prints everything on first page itself, over writing text again and again. Please help me, I want to print text on multiple pages. Looking for your suggestions.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.