私はたくさんの検索をしていますが、ここではPosexplorerの例がありますが、私のプリンタはusbで、私はPosExplorerが並列です。私はプリンタで印刷する方法と、引き出しを開くためにプリンタにコードを送る方法を知らない。Epson T20(サーマルプリンタ)で引き出しを開けてください。
_oposPrinter.PrintNormal(PrinterStation.Receipt, logo);
または
_oposPrinter.PrintNormal(PrinterStation.Receipt, Convert.ToString((char)27 + "|#fP"));
プリンタ:デバッグとは、ラインに到達すると
string ESC = Convert.ToString((char)27);
string logo=Convert.ToString(ESC+"|tL");
_oposPrinter.PrintNormal(PrinterStation.Receipt, logo);
_oposPrinter.PrintNormal(PrinterStation.Receipt, "Print example\n");
_oposPrinter.PrintNormal(PrinterStation.Receipt, Convert.ToString((char)27 + "|#fP"));
:私は、プリンタに次のコードをエスケープシーケンスを送信するために使用してい
何も印刷しません。
プリンタをデフォルトのプリンタ(テキストのみのドライバ)として設定し、他のドキュメントと同様に印刷します。引き出しを開くには、COMポートにアクセスし、どの信号を送るべきかを知る必要があります。 – David
ありがとう、私はこの方法で印刷しましたが、私は引き出しを開ける必要があります。とにかくありがとう。 – uoah