I am developing a program, and I need to print the Bills data that is displayed in a DataGridView control.
I want to know the code how to print the data in the DataGridView.
I am using Visual Studio 2008 and C# 3.5
You can print the content of SfDataGrid using PDF exporting and PrintDialog support. For that, export the SfDataGrid to PDF and load the exported PDF document into PdfDocumentView. Then, print the document in PdfDocumentView using the PrintDialog. Document.
Step 1: Make a database with a table in SQL Server. Step 2: Create a Windows Application and add DataGridView on the Form. Now add a DataGridView control to the form by selecting it from Toolbox and set properties according to your needs.
This class includes codes to print Bill from data grid view in C# windows form application. It is a part of my Tutorial Series on "How to Create Billing System in C#"
There isn't any printing support built into the DataGridView
, so you'll have to implement this yourself. There are a couple of possible solutions:
WinForms does provide a standard printing system, which you can harness to print out the contents of your DataGridView
control. You'll want to use the PrintDocument
class, so the relevant documentation is a great place to start reading. The advantage of this method is that it allows you complete control over the format and layout of the printed document.
You could export the data from your DataGridView
to Microsoft Excel, and then print it from there. Excel has much more robust, built-in printing support.
If you're not interested in rolling your own solution, you can browse CodeProject for some already designed solutions. For example:
Even if you don't find a drop-in solution that fits your exact needs, you can probably get a good idea of how to go about creating this functionality yourself by using the published code as an example.
If you're up for a really hacky solution (and you don't have any desire or need to customize the layout or design of the printed output), you could use the DrawToBitmap
method exposed by every control. This is a really quick-and-dirty approach that draws an exact image of the DataGridView
control as it appears on your screen to a Bitmap
, which you can then pass directly to your printer.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With