Print a DataGridView in VB.Net
VB.Net Tutorial:Datagridview Printing in VB.Net
There will be situations to just print a DataGridView in a application than designing again the columns and rows in a Crystal Report. But in .Net there is no straight forward way to do this or in other words this is not supported natively. This article is based on article from Visual Basic.Net Tutorial. To print the Datagridview we need to draw all the objects using Graphics Object given in the PrintDocument before calling print method in the respective PrintDocument. Read more…