Get a list of installed printers

using System.Drawing.Printing;
...
  
// Loop through the string collection of printers
foreach (string strPrinter in PrinterSettings.InstalledPrinters)
{
    // Show the name of the printer
    MessageBox.Show(strPrinter);
}

Comments

Popular posts from this blog

C# code to Check IE Proxy Settings

Convert XElement to DataTable