I need to get the list of all printers that connect to computer?
How I can do it in C#, WinForms?
Try this:
foreach (string printer in System.Drawing.Printing.PrinterSettings.InstalledPrinters) { MessageBox.Show(printer); }
1.4m articles
1.4m replys
5 comments
57.0k users