Click here to Skip to main content
15,892,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

i want to print datagridview printing by user selecting rows and columns below code is only first and second rows and colomns text

C#
private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
        {

           
                System.Drawing.Font fntString = new Font("Times New Roman", 10, FontStyle.Bold);

            //first row values
            e.Graphics.DrawString("Id : ", fntString, Brushes.Black, 24, 70);
            e.Graphics.DrawString(dataGridView1.Rows[0].Cells[0].Value.ToString(), fntString, Brushes.Black, 100, 70);
            e.Graphics.DrawString("Name : ", fntString, Brushes.Black, 24, 90);
            e.Graphics.DrawString(dataGridView1.Rows[0].Cells[1].Value.ToString(), fntString, Brushes.Black, 100, 90);

            //second row values
            e.Graphics.DrawString("Id : ", fntString, Brushes.Black, 180, 70);
            e.Graphics.DrawString(dataGridView1.Rows[0].Cells[0].Value.ToString(), fntString, Brushes.Black, 220, 70);
            e.Graphics.DrawString("Name: ", fntString, Brushes.Black, 180, 90);
            e.Graphics.DrawString(dataGridView1.Rows[0].Cells[1].Value.ToString(), fntString, Brushes.Black, 220, 90);

        }


i want to print like above code but selecting multiple or single row and colomns.
please help.iam stuck here.

thankyou
Posted
Updated 5-Oct-15 1:57am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900