Count printed pages

  • Thread starter Thread starter tolkien
  • Start date Start date
T

tolkien

Hello!!!
I need your help one more time!!!
I have a database with some users and the number of pages they can
print.
Every time a page is printed i substruct one from that number.
How do i know when a page is printed?Is there a namespace i can use?
Thanks!!!!
 
Hello!!!
I need your help one more time!!!
I have a database with some users and the number of pages they can
print.
Every time a page is printed i substruct one from that number.
How do i know when a page is printed?Is there a namespace i can use?
Thanks!!!!

who print the pages?

and what happens for example if the print did not get out well? (like
if the printer ran out of ink)
what do you do in this case?
 
Thanks for your reply!!!
who print the pages?
I will have a form where a user will give his username and password.
if the login is successful we will be able to print some
file(pdf,word,txt,...).There is a maximum number of pages he can
print.
and what happens for example if the print did not get out well? (like
if the printer ran out of ink)
what do you do in this case?
I don't care about this for now. :)

I found somewhere this:

Process printJob = new Process();
printJob.StartInfo.FileName = "name";
printJob.StartInfo.UseShellExecute = true;
printJob.StartInfo.Verb = "print";
printJob.Start();

is any event raised when a page is printed so i can decrease the
number of pages he has left to print?

I also read something about the PrintDocument class.
Any suggestion what should i use?

Thank you again for your time!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top