使用C#的powerpoint打印问题

时间:2009-07-16 01:14:24

标签: c# printing powerpoint

我正在使用Office 2007中的COM对象来处理和打印ms-office文件。我对word和excel文档没有任何问题,但我无法打印Power Point文档。

下面的代码只是打开文件向打印机发送作业但没有打印出来

我在做错了什么? =(

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Main
{
    class PrintPPoint
    {
        public static void PrintPPointDocument(string filename, int copies, string range)
        {
            Microsoft.Office.Interop.PowerPoint.Presentation work = null;            
            Microsoft.Office.Interop.PowerPoint.Application app = new Microsoft.Office.Interop.PowerPoint.ApplicationClass();
            Microsoft.Office.Interop.PowerPoint.Presentations presprint = app.Presentations;
            //app.Visible = Microsoft.Office.Core.MsoTriState.msoTrue;
            work = presprint.Open(filename, Microsoft.Office.Core.MsoTriState.msoCTrue, Microsoft.Office.Core.MsoTriState.msoCTrue, Microsoft.Office.Core.MsoTriState.msoFalse);
            work.PrintOptions.PrintInBackground = 0;
            work.PrintOptions.ActivePrinter = app.ActivePrinter;
            if (range.Equals("0"))            
            {                
                work.PrintOut(0, 1, app.ActivePrinter, copies, Microsoft.Office.Core.MsoTriState.msoFalse);                
            }
            else
            {
                string[] toprintsheet = range.Split(new char[] { ',' });
                foreach (string aux in toprintsheet)
                {
                    work.PrintOptions.PrintInBackground = 0;
                    work.PrintOptions.ActivePrinter = app.ActivePrinter;
                    if (aux.Contains("-"))
                    {
                        int from = 0, to = 0;
                        string[] SplitRange = aux.Split(new char[] { '-' });
                        from = Convert.ToInt16(SplitRange[0]);
                        to = Convert.ToInt16(SplitRange[1]);                        
                        work.PrintOut(from, to, app.ActivePrinter, 1, Microsoft.Office.Core.MsoTriState.msoFalse);
                    }
                    else
                    {
                        work.PrintOut(Convert.ToInt16(aux), Convert.ToInt16(aux), app.ActivePrinter, copies, Microsoft.Office.Core.MsoTriState.msoFalse);
                    }

                }
            }
            work.Close();
            app.Quit();
        }
    }
}

2 个答案:

答案 0 :(得分:2)

我只需要设置

PrintOptions.PrintInBackground = Microsoft.Office.Core.MsoTriState.msoFalse

这可以让工作完成。

答案 1 :(得分:0)

我不能告诉你,但我打赌你很容易发现自己......

我认为这是一个与桌面交互的应用程序,而不是某些后台服务。

我会逐步浏览代码,看看它是否有效..(对于app.visible = true和不是。)如果它有效,它可能是ppoint打印功能和ppoint关闭文档/退出之间的竞争。 (即使你关闭了后台打印),你也检查过......

祝你好运