Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how count printed pages

Status
Not open for further replies.

Oliveros

Mechanical
Oct 15, 2003
23
0
0
CL
hi group,

i need to develop a software to manage a public printer running in windows, the details are:

1. users can print only 100 pages by week
2. the software registers the amount of printed pages by each user
3. if the user exceed 100 pages the software reject the print command.

can i do this in VB?, where i must begin?



 
Replies continue below

Recommended for you

In WinXP look under Control Panel|Admin Tools|Computer management|Performance logs. You can set up a new log there to monitor print jobs. You can set that log to post to a .CSV file, which is aesy to monitor from VB

Good Luck
johnwm
________________________________________________________
To get the best from these forums read faq731-376 before posting
 
ok, theres another solution?. not all the pc are running win xp or win2000. the most of them are running windows 98 oo milenium.

 
You might want to look into the EnumJobs API. This will enumerate all of the current jobs in the queue for a specific printer. Depending on certain settings, you will get back information about the print jobs, including the total pages, the user, submission time and so forth. I would look into the details of using that API.
 
Status
Not open for further replies.
Back
Top