home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l405 / 8.ddi / FORM2A.FR_ / FORM2A.bin (.txt)
Encoding:
Visual Basic Form  |  1993-04-28  |  1.5 KB  |  55 lines

  1. VERSION 2.00
  2. Begin Form Form2 
  3.    Caption         =   "Printer Options"
  4.    ClientHeight    =   1770
  5.    ClientLeft      =   1095
  6.    ClientTop       =   1485
  7.    ClientWidth     =   6765
  8.    Height          =   2175
  9.    Left            =   1035
  10.    LinkTopic       =   "Form2"
  11.    ScaleHeight     =   1770
  12.    ScaleWidth      =   6765
  13.    Top             =   1140
  14.    Width           =   6885
  15.    Begin CommandButton Command2 
  16.       Caption         =   "Reset Number of Copies"
  17.       Height          =   255
  18.       Left            =   3600
  19.       TabIndex        =   3
  20.       Top             =   1080
  21.       Width           =   2655
  22.    End
  23.    Begin CommandButton Command1 
  24.       Caption         =   "Accept Number of Copies"
  25.       Height          =   255
  26.       Left            =   360
  27.       TabIndex        =   2
  28.       Top             =   1080
  29.       Width           =   2415
  30.    End
  31.    Begin TextBox Num_Copies 
  32.       Height          =   375
  33.       Left            =   5400
  34.       TabIndex        =   1
  35.       Text            =   "1"
  36.       Top             =   480
  37.       Width           =   495
  38.    End
  39.    Begin Label Label2 
  40.       Caption         =   "Please enter the number of copies you wish to print :"
  41.       Height          =   255
  42.       Left            =   360
  43.       TabIndex        =   0
  44.       Top             =   480
  45.       Width           =   4815
  46.    End
  47. Sub Command1_Click ()
  48.     Number_Of_Copies = Num_Copies
  49.     Form2.Hide
  50. End Sub
  51. Sub Command2_Click ()
  52.     Num_Copies.SetFocus
  53.     Num_Copies.Text = "1"
  54. End Sub
  55.