how to get the list of all printers in computer - C# Winform


how to get the list of all printers in computer - C# Winform



<?php
foreach (string printer in System.Drawing.Printing.PrinterSettings.InstalledPrinters)
{
MessageBox.Show(printer);
}

0 comments:

Post a Comment