I'm developing application for managing print spooler and faced with the following problem. I need to get info about how many copies of the specific document which is being printed now were requested? Could you tell me the idea how to do it?
Printable View
I'm developing application for managing print spooler and faced with the following problem. I need to get info about how many copies of the specific document which is being printed now were requested? Could you tell me the idea how to do it?
Your question is not very clear but try:
Code:pInfo->GetMaxPage();
in
CView::OnPrint(..);
You can use PRINTER_INFO_2 standard printer info structure(cJobs member of this structure specifies the no of print jobs for that specific printer) ....
Also make use of following functions OpenPrinter(), GetPrinter()....
Hope this helps,
Thanks...