How to print a DataGridView in VB.NET 2005

  • Thread starter Thread starter Marc
  • Start date Start date
M

Marc

Hallo,

can someone tell me, how i could print a datagridview?
I found in the whole net nothing :(

bye
 
Marc said:
Hallo,

can someone tell me, how i could print a datagridview?
I found in the whole net nothing :(

bye

Easiest way is to use Crystal Reports and duplicate the data in there.

Chris
 
i'm use the express edition. imho there is no crystal reports included.
is there no way easy?
 
can someone tell me, how i could print a datagridview?
I found in the whole net nothing :(

According to Microsoft:-

To create a print job

Add a PrintDocument component to your form like "Dim pd As New
Printing.PrintDocument()".
Write code to handle the PrintPage event.
You will have to code your own printing logic. Additionally, you will have
to specify the material to be printed.

Fun, huh?
 
Back
Top