Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

How to Cancel Printing job sent to Printer.

Total Hit ( 3027)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


To learn more about Printing Using API click on the folloing link

http://msdn.microsoft.com/library/en-us/gdi/prntspol_0r1j.asp

Click here to copy the following block
'Instead of just calling CancelPrinting directly, try using this routine:

Function CancelPrinting() As Integer
  '
  '  subroutine to cancel a document that has been sent
  '  to print manager.
  '  the AbortDoc API function is used to provide the
  '  cancel function.
  '  One problem with this API function is that it causes
  '  a run-time error the next time the Printer object is
  '  referenced. So, to get around this, a Printer.EndDoc
  '  statement is issued with an Error-Handler that ignores
  '  this error
  
  DimAs Integer
  On Error GoTo AP_PrintError

  i = AbortDoc(Printer.hDC) ' abort the print manager output for this job
  If i > 0 Then
    CancelPrinting = True
  Else
    CancelPrinting = False
  End If

  Printer.EndDoc 'issue a statement to get around the API problem

  Exit Function
AP_PrintError:
  Exit Function
End Function


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.