Hey Everyone,
I am trying to print to a network printer using C#. Does anyone have any idea where I should get started.
Thanks,
-zd
Printable View
Hey Everyone,
I am trying to print to a network printer using C#. Does anyone have any idea where I should get started.
Thanks,
-zd
All .NET printing uses a PrintDocument, so that is where you start. You first take a look at what members the PrintDocument has. Doing so would reveal the PrinterSettings property, which is described like so:That sounds pertinent so you should investigate further from there.Quote:
Gets or sets the printer that prints the document.