如何使用 wxWidgets 获取打印机的状态以及发送到打印机的作业
如何使用 wxWidgets 获取打印机的状态以及发送到打印机的作业。 找到打印机。
我要做的事情是: 1. 找到打印机。 2. 检查打印机的状态。 3. 发送作业进行打印。 4. 作业失败/完成后返回ack。
提前致谢。
How to get the status of printer and the job sent to a printer using wxWidgets.
Find the printer.
Things I have to do is:
1. Find a printer.
2. Check the status of the printer.
3. Send the job to print.
4. Return ack after the job fails/Completes.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你研究过wxWidgets打印概述了吗?
http://docs.wxwidgets.org/stable/wx_printingoverview.html
Have you studied the wxWidgets printing overview?
http://docs.wxwidgets.org/stable/wx_printingoverview.html
您可以在调用
print
后立即查询最后一个错误,如下所示:返回值可以是:
如需进一步参考,请在此处检查:http://docs.wxwidgets.org/stable/wx_wxprinter.html#wxprinterprint
You can query the last error right after the call to
print
, like this:The return values can be:
For further reference check here: http://docs.wxwidgets.org/stable/wx_wxprinter.html#wxprinterprint