Click here to Skip to main content
15,881,380 members

Print data from the datagridview by csharp in window application

footballpardeep asked:

Open original thread
How to print the data from the datagridview in csharp ,it's and window application.

I am able to print the datagridview ,with the help printdocument, and Bitmap.

But the problem is that gridview has scroll bar, so means some data is hidden there , so how can i print that.
private void button1_Click(object sender, EventArgs e)
       {
           string connectionString = "Data Source=.;Initial Catalog=pubs;Integrated Security=True";
           string sql = "SELECT * FROM Authors";
           SqlConnection connection = new SqlConnection(connectionString);
           SqlDataAdapter dataadapter = new SqlDataAdapter(sql, connection);
           DataSet ds = new DataSet();
           connection.Open();
           dataadapter.Fill(ds, "Author_table");
           connection.Close();
           dataGridView1.DataSource = ds;
           dataGridView1.DataMember = "Author_table";

       }

       private void button2_Click(object sender, EventArgs e)
       {
           printDocument1.Print();
       }

       private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
       {
           Bitmap bm = new Bitmap(this.dataGridView1.Width, this.dataGridView1.Height);
           dataGridView1.DrawToBitmap(bm, new Rectangle(0, 0, this.dataGridView1.Width, this.dataGridView1.Height));
           e.Graphics.DrawImage(bm, 0, 0);
       }
Tags: C#, Printing, DataGridView

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



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