vote up 1 vote down star
1

Hi all,

I want to write code in C# for loading printer name in window. But I don't have any ideas to write it.

Can anybody help me to solve this problem?

Thanks. Ung Sopolin

flag

56% accept rate
Urgent Question – Sopolin Jul 1 at 4:29

3 Answers

vote up 0 vote down

PrinterSettings prSetting = new PrinterSettings();

Then prSetting.PrinterName will get you the name of the default printer name. You can use the same class for other Printer information.

link|flag
vote up 0 vote down

Use PrinterSettings class from the System.Drawing.Printing namespace

PrinterSettings.InstalledPrinters

should return you a list of Printers.

link|flag
vote up 0 vote down

Include a reference to the System.Drawing library and then:

var printers = PrinterSettings.InstalledPrinters.Cast<string>();

foreach (var printer in printers)
{
    Console.WriteLine(printer);
}

I think you might be interested in this post.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.