vote up 0 vote down star

Guys, i am trying to print powerpoint docs through my windows application in c#. I am using Microsoft.Office.Interop.PowerPoint for this functionality. Following is the code which I have used. It sends the request to printer but nothing gets printed. if you guys have any knowledge plz help.

        string filename = "C:\\test.ppt";
        int copies = 1;
        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;
        work = presprint.Open(filename, Microsoft.Office.Core.MsoTriState.msoCTrue, Microsoft.Office.Core.MsoTriState.msoCTrue, Microsoft.Office.Core.MsoTriState.msoFalse);
        //app.Visible = Microsoft.Office.Core.MsoTriState.msoTrue;
        work.PrintOptions.PrintInBackground = Microsoft.Office.Core.MsoTriState.msoFalse;
        //work.PrintOptions.PrintInBackground = Microsoft.Office.Core.MsoTriState.msoTrue;
        //work.PrintOptions.ActivePrinter = "HP LaserJet 5000 Series PCL6";
        work.PrintOptions.ActivePrinter = app.ActivePrinter;

        work.PrintOut(1, work.Slides.Count, app.ActivePrinter, copies, Microsoft.Office.Core.MsoTriState.msoFalse);


        work.Close();
        app.Quit();`
flag

1 Answer

vote up 0 vote down

When debugging, try halting after work.PrintOut and check your printer to see if the jobs arrives. I'm guessing you are closing PowerPoint too fast.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.