代码之家  ›  专栏  ›  技术社区  ›  Arvo Bowen

Windows Server 2008 R2 Standard 64位的PrintDocument问题

  •  1
  • Arvo Bowen  · 技术社区  · 10 年前

    似乎在尝试使用 System.Drawing.Printing.PrintDocument 在Windows 7 64位(SP1)机箱上的命名空间,它工作得很好。但是,在Server2008R264位(SP1)机箱上尝试相同的代码,它只是挂在代码中。不会引发异常等。。。

    这是我的代码片段。。。

    private bool PrintTIF(string sPrinter, string sFile)
    {
        try
        {
            //Open file for printing
            WriteEvent(105, "Opening the file for printing using streamreader...", CustomLogTool.EventLogEntryTypeExtentions.Debug);
            m_PrinterFile = new StreamReader(sFile);
    
            //Set the document name
            WriteEvent(105, "Set the document name.", CustomLogTool.EventLogEntryTypeExtentions.Debug);
            m_Printer.DocumentName = Path.GetFileName(sFile);
    
            //Print file
            WriteEvent(105, "Sending the file to the printer...", CustomLogTool.EventLogEntryTypeExtentions.Debug);
            m_Printer.Print();
            m_PrinterFilesPrinting.Add(new PrintInfo(sFile, null, sPrinter));
    
            //Close file
            WriteEvent(105, "Closing the file and destorying the streamreader object.", CustomLogTool.EventLogEntryTypeExtentions.Debug);
            m_PrinterFile.Close();
    
            //Success
            return true;
        }
        catch (Exception ex)
        {
            try { m_PrinterFile.Close(); }
            catch { }
            WriteEvent(201, ex.Message, CustomLogTool.EventLogEntryTypeExtentions.Debug);
    
            return false;
        }
    }
    

    我得到的日志事件最多为“将文件发送到打印机…”。我什么都没有得到,我希望在异常中得到错误201消息。但我一无所获。好像程序挂起了。我猜这是由于从Win7(SP1)更改为Server2008R2(SP1)。有什么想法吗?

    1 回复  |  直到 10 年前
        1
  •  0
  •   Arvo Bowen    10 年前

    解决方案: 我弄明白我的问题是什么。这与我一直选择错误的打印机有关!为这样一件简单的事情浪费了很多时间,但它确实让我走上了一条以不同方式调试它的道路。在我开始使用正确的打印机后,我发现下一个问题是一个TIFF文件,而不是实际的TIFF文件。它恰好是一个0字节的测试文件,我在测试目录中忘记了它。

    我调试这些服务打印机问题的新方法: 了解情况的最佳方法是离开“服务领域”一段时间。将其编译为 调试 构建,这样您就可以将其作为控制台应用程序运行。将其作为 释放 构建要求您将其作为服务运行,并且不允许您手动运行。当我将其构建为调试版本时,我在服务器上从目录运行它,然后弹出一个Windows对话框。。。它问我要将文件保存为什么。不久后,我发现它是默认的“Microsoft XPS Document Writer”打印机!

    然后我进去把打印机换成我想要的(通过代码)。。。

    PrintDocument pd = new PrintDocument();
    pc = new StandardPrintController();
    pd.PrintController = pc;
    // Yadda Yadda Yadda...
    pd.PrinterSettings.PrinterName = "My Printer Name";
    

    希望它能帮助其他人,也能为他们节省一些时间!祝你好运