home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form AbortForm
- Caption = "Abort Printing"
- ClientHeight = 1695
- ClientLeft = 2235
- ClientTop = 2340
- ClientWidth = 3795
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 2100
- Left = 2175
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- ScaleHeight = 1695
- ScaleWidth = 3795
- Top = 1995
- Visible = 0 'False
- Width = 3915
- Begin VB.CommandButton CmdAbort
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Press to Abort Print Job"
- Height = 495
- Left = 600
- TabIndex = 0
- Top = 480
- Width = 2535
- End
- Attribute VB_Name = "AbortForm"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- ' Copyright
- 1996 by Desaware Inc. All Rights Reserved
- Private Sub CmdAbort_Click()
- AbortPrinting = -1
- End Sub
-