使用 C# 通过 LPT1 端口和网络打印机打印文本文件以进行快速打印
我必须打印使用 Crystal Report import 创建的文本文件。现在我必须将其直接打印到 LPT1 端口以进行快速点阵打印。我使用了下面的代码,没有任何效果。任何帮助将非常感激。
1.System.Diagnostics.Process.Start("打印", @"\D:LPT1" +" "+ txtFilepath);
- System.Diagnostics.Process printProcess = new System.Diagnostics.Process(); System.Diagnostics.ProcessStartInfo PrintStartInfo = new ystem.Diagnostics.ProcessStartInfo("Print.exe");
字符串 STRARGS = txtFilepath + " " + "/D:LPT1"; PrintStartInfo.Arguments = STRARGS; printProcess.StartInfo = PrintStartInfo; 打印进程.Start();
printProcess.WaitForExit();
3.System.Diagnostics.Process.Start("打印", txtFilepath);
请帮助我
问候, 马丁.
I have to print a text file created using Crystal Report import . now i Hve to print it directly to LPT1 port for fast dotmatrix printing . I used the below code, nothing is working . Any help would be greatly apprecialtable .
1.System.Diagnostics.Process.Start("Print", @"\D:LPT1" +" "+ txtFilepath);
- System.Diagnostics.Process printProcess = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo PrintStartInfo = new ystem.Diagnostics.ProcessStartInfo("Print.exe");
string STRARGS = txtFilepath + " " + "/D:LPT1";
PrintStartInfo.Arguments = STRARGS;
printProcess.StartInfo = PrintStartInfo;
printProcess.Start();
printProcess.WaitForExit();
3.System.Diagnostics.Process.Start("Print", txtFilepath);
Please help me
Regards,
Martin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查下面的链接。它会解决你的问题。
如何将原始数据发送到打印机
Check the below link. It will solve your problem.
How to Send Raw Data to Printer