home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / PROGRAM / VISBASIC / EMED16A / SAMPLES / VB / PCANCEL.FR_ / PCANCEL.FR
Text File  |  1994-08-24  |  2KB  |  61 lines

  1. VERSION 2.00
  2. Begin Form PCANCEL 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "EMPAD"
  5.    ClientHeight    =   1164
  6.    ClientLeft      =   2160
  7.    ClientTop       =   2736
  8.    ClientWidth     =   2352
  9.    ControlBox      =   0   'False
  10.    Height          =   1560
  11.    Left            =   2124
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   97
  16.    ScaleMode       =   3  'Pixel
  17.    ScaleWidth      =   196
  18.    Top             =   2376
  19.    Width           =   2424
  20.    Begin CommandButton Command1 
  21.       Caption         =   "Cancel"
  22.       Height          =   408
  23.       Left            =   468
  24.       TabIndex        =   0
  25.       Top             =   468
  26.       Width           =   1404
  27.    End
  28.    Begin Label Label1 
  29.       Alignment       =   2  'Center
  30.       Caption         =   "Printing..."
  31.       Height          =   372
  32.       Left            =   72
  33.       TabIndex        =   1
  34.       Top             =   132
  35.       Width           =   2184
  36.    End
  37. End
  38. Option Explicit
  39.  
  40. Sub Command1_Click ()
  41. Tag = "CANCEL"
  42. End Sub
  43.  
  44. Sub Form_Activate ()
  45.     ' The tag control is used by the print routine
  46.     'to determine if the user has clicked the "CANCEL" button
  47.     Tag = ""
  48.     
  49.     Refresh
  50.     DoEvents
  51.     
  52.     If Tag <> "CANCEL" Then
  53.         If FilePrint() Then
  54.             DoEvents
  55.             If Tag <> "CANCEL" Then Printer.EndDoc
  56.         End If
  57.     End If
  58.     Unload Me
  59. End Sub
  60.  
  61.