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!!