Question datagridview print

There isn't any built in support for printing.

There are two options (at least, I only know of two)

1)Use the standard printing system provided by Windows Forms and manually print out the information that you want. Check out the documentation for PrintPage and PrintDocument

2)This is the one you don't want to use involving using the DataGridView's clipboard copy support to copy the content to an Excel file and then print that.

Why not use Excel? (Just curious)
 
Back
Top