I have never printed anything using C#. I was just wondering what the standard way to do this was. On my form I have a few listboxes and a few textboxes. I would like to print their contents and show them in a print preview, with a nice layout in a table. Then from their I would like the user to be able to print.
Thanks in advance!
You will want to use System.Drawing.Printing libraries. You’ll use the PrintDocument.Print method which you can find on the MSDN Page with Example