Home > Backend Development > C#.Net Tutorial > C# Simple code example of how to set the system's default printer

C# Simple code example of how to set the system's default printer

黄舟
Release: 2017-03-15 11:05:59
Original
2059 people have browsed it

C# Simple code example of how to set the system's default printer

using System.Runtime.InteropServices;
[DllImport("winspool.drv")]
public static extern bool SetDefaultPrinter(stringName);
privatevoid button1_Click(objectsender, EventArgs e)
{
聽聽聽 SetDefaultPrinter("My Printer");
}
Copy after login


The above is the detailed content of C# Simple code example of how to set the system's default printer. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template