gpt4 book ai didi

c# - 拒绝访问 PrintDialog 中的网络打印机

转载 作者:太空狗 更新时间:2023-10-29 20:42:27 26 4
gpt4 key购买 nike

我正在尝试从代码打印到网络打印机,但打印对话框中的网络打印机状态显示访问被拒绝,无法连接并且打印按钮被禁用。但是如果我从另一个应用程序打印,我可以很好地打印到那台打印机。而且,如果我从打印对话框中选择打印为 PDF,也可以正常工作。我只是无法打印到网络打印机。我有某种权限问题吗?

if (File.Exists(previewDocument))
File.Delete(previewDocument);

PrintDialog printD = new PrintDialog();
printD.PageRangeSelection = PageRangeSelection.AllPages;
printD.UserPageRangeEnabled = true;

if (printD.ShowDialog() ?? false)
{
XpsDocument xpsDoc = new XpsDocument(previewDocument, FileAccess.ReadWrite);
XpsDocumentWriter xpsWriter = XpsDocument.CreateXpsDocumentWriter(xpsDoc);
xpsWriter.Write(((IDocumentPaginatorSource)messageFlow).DocumentPaginator);

FixedDocumentSequence fixedDocSeq = xpsDoc.GetFixedDocumentSequence();
printD.PrintDocument(fixedDocSeq.DocumentPaginator, "Hello!");
}

最佳答案

您应该在实例化您的打印​​对话框后添加此代码片段以找到您的共享网络打印机并打印到它

printD.PrintQueue = New PrintQueue(New PrintServer(@"\\computer server name"), "the exact name of your network printer")

希望对你有帮助

关于c# - 拒绝访问 PrintDialog 中的网络打印机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39776575/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com