home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / address / printx.frm < prev    next >
Text File  |  1993-07-05  |  1KB  |  40 lines

  1. VERSION 2.00
  2. Begin Form PrintX 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "Printing ..."
  5.    ClientHeight    =   615
  6.    ClientLeft      =   3030
  7.    ClientTop       =   3285
  8.    ClientWidth     =   2175
  9.    Height          =   1020
  10.    Left            =   2970
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   615
  15.    ScaleWidth      =   2175
  16.    Top             =   2940
  17.    Width           =   2295
  18.    Begin SSCommand Command3D1 
  19.       Caption         =   "&Cancel"
  20.       Font3D          =   3  'Inset w/light shading
  21.       Height          =   375
  22.       Left            =   480
  23.       TabIndex        =   0
  24.       Top             =   120
  25.       Width           =   1215
  26.    End
  27. End
  28.  
  29. Sub Command3D1_Click ()
  30. 'PrintCancel is global to allow printout interruption by
  31. 'user
  32. PrintCancel = True
  33. End Sub
  34.  
  35. Sub Form_Load ()
  36. PrintX.Top = Address.Top + (Address.Height - PrintX.Height) / 2
  37. PrintX.Left = Address.Left + (Address.Width - PrintX.Width) / 2
  38. End Sub
  39.  
  40.