Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
vb.netまたはC#(.Net 2.0)を使用して、デフォルトのプリンターがオンになっているかどうかを確認するにはどうすればよいですか
また、プリンターが接続されているポート番号は何ですか。
PrinterSettings クラスを使用していますが、これらの値を取得するメソッドがありません。
Use Following:
string strDefaultPrinter; using(var printServer = new LocalPrintServer()) { strDefaultPrinter= printServer.DefaultPrintQueue.FullName); }
In this way you can set default printer in one string and can compare with detected printer.