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
|
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
|
||
|
|
|
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. |
||
|
|
|
|
Use PrinterSettings class from the System.Drawing.Printing namespace
should return you a list of Printers. |
||
|
|
|
|
Include a reference to the
I think you might be interested in this post. |
||
|
|