简体   繁体   English

检查是否已成功完成打印

[英]Check If Print has been done successfully

I am developing windowform application in c#. 我在c#中开发windowform应用程序。

In my app, i have written below code to get all image from local machine and print it. 在我的应用程序中,我写了下面的代码来从本地机器获取所有图像并打印它。

  files = Directory.GetFiles(@"C:\temp", "*.jpeg");

        foreach (var i in files)
        {
            var objPrintDoc = new PrintDocument();
            objPrintDoc.PrintPage += (obj, eve) =>
            {
                System.Drawing.Image img = System.Drawing.Image.FromFile(i);
                Point loc = new Point(100, 100);
                eve.Graphics.DrawImage(img, loc);
            };
            objPrintDoc.Print();
        }

Now i want to check if that print has been done successfully or not and then i want to delete temp folder which i have created manually to store images. 现在我想检查该打印是否已成功完成,然后我想删除我手动创建的临时文件夹以存储图像。

I have tried below code, but it didn't work for me. 我试过下面的代码,但它对我不起作用。

        PrintServer myPrintServer;                    
        PrintQueueCollection myPrintQueues = myPrintServer.GetPrintQueues();
        String printQueueNames = "My Print Queues:\n\n";
        foreach (PrintQueue pq in myPrintQueues)
        {
            printQueueNames += "\t" + pq.Name + "\n";
        }

Please let us know my problem and do the needed. 请让我们知道我的问题,并做所需。

Thanks,Prashant 谢谢,PRASHANT

Here is a msdn description for PrintSystemJobInfo.JobStatus 这是PrintSystemJobInfo.JobStatus的msdn描述

https://msdn.microsoft.com/en-us/library/system.printing.printsystemjobinfo.jobstatus(v=vs.110).aspx https://msdn.microsoft.com/en-us/library/system.printing.printsystemjobinfo.jobstatus(v=vs.110).aspx

I tried the following code and saw print status. 我尝试了以下代码并看到了打印状态。

 private void brnPrint_Click(object sender, EventArgs e)
        {
            var files = Directory.GetFiles(@"D:\Folder", "*.jpg");

            foreach (var i in files)
            {
                var objPrintDoc = new PrintDocument();
                objPrintDoc.PrintPage += (obj, eve) =>
                    {
                        Image img = Image.FromFile(i);
                        Point loc = new Point(100, 100);
                        eve.Graphics.DrawImage(img, loc);
                    };

                objPrintDoc.Print();
                PrintServer myPrintServer = new PrintServer(@"\\ComputerName");
                PrintQueueCollection myPrintQueues = myPrintServer.GetPrintQueues();                   
                try
                {
                    foreach (PrintQueue pq in myPrintQueues)
                    {
                        pq.Refresh();
                        PrintJobInfoCollection pCollection = pq.GetPrintJobInfoCollection();
                        foreach (PrintSystemJobInfo job in pCollection)
                        {
                            listBox1.Items.Add(pq.Name);
                            SpotTroubleUsingJobAttributes(job);
                        }

                    }
                }
                catch (Exception)
                {
                     //throw;
                }
            }
        }

        public void SpotTroubleUsingJobAttributes(PrintSystemJobInfo theJob)
        {
            if ((theJob.JobStatus & PrintJobStatus.Blocked) == PrintJobStatus.Blocked)
            {
                listBox1.Items.Add("The job is blocked.");
            }
            if (((theJob.JobStatus & PrintJobStatus.Completed) == PrintJobStatus.Completed)
                ||
                ((theJob.JobStatus & PrintJobStatus.Printed) == PrintJobStatus.Printed))
            {
                listBox1.Items.Add(
                    "The job has finished. Have user recheck all output bins and be sure the correct printer is being checked.");
            }
            if (((theJob.JobStatus & PrintJobStatus.Deleted) == PrintJobStatus.Deleted)
                ||
                ((theJob.JobStatus & PrintJobStatus.Deleting) == PrintJobStatus.Deleting))
            {
                listBox1.Items.Add(
                    "The user or someone with administration rights to the queue has deleted the job. It must be resubmitted.");
            }
            if ((theJob.JobStatus & PrintJobStatus.Error) == PrintJobStatus.Error)
            {
                listBox1.Items.Add("The job has errored.");
            }
            if ((theJob.JobStatus & PrintJobStatus.Offline) == PrintJobStatus.Offline)
            {
                listBox1.Items.Add("The printer is offline. Have user put it online with printer front panel.");
            }
            if ((theJob.JobStatus & PrintJobStatus.PaperOut) == PrintJobStatus.PaperOut)
            {
                listBox1.Items.Add("The printer is out of paper of the size required by the job. Have user add paper.");
            }

            //if (((theJob.JobStatus & PrintJobStatus.Paused) == PrintJobStatus.Paused)
            //    ||
            //    ((theJob.HostingPrintQueue.QueueStatus & PrintQueueStatus.Paused) == PrintQueueStatus.Paused))
            //{
            //    HandlePausedJob(theJob);
            //    //HandlePausedJob is defined in the complete example.
            //}

            if ((theJob.JobStatus & PrintJobStatus.Printing) == PrintJobStatus.Printing)
            {
                listBox1.Items.Add("The job is printing now.");
            }
            if ((theJob.JobStatus & PrintJobStatus.Spooling) == PrintJobStatus.Spooling)
            {
                listBox1.Items.Add("The job is spooling now.");
            }
            if ((theJob.JobStatus & PrintJobStatus.UserIntervention) == PrintJobStatus.UserIntervention)
            {
                listBox1.Items.Add("The printer needs human intervention.");
            }

        }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM