home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form2
- Caption = "Printer Options"
- ClientHeight = 1770
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 6765
- Height = 2175
- Left = 1035
- LinkTopic = "Form2"
- ScaleHeight = 1770
- ScaleWidth = 6765
- Top = 1140
- Width = 6885
- Begin VB.CommandButton Command2
- Caption = "Reset Number of Copies"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 3600
- TabIndex = 3
- Top = 1080
- Width = 2655
- End
- Begin VB.CommandButton Command1
- Caption = "Accept Number of Copies"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 360
- TabIndex = 2
- Top = 1080
- Width = 2415
- End
- Begin VB.TextBox Num_Copies
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 5400
- TabIndex = 1
- Text = "1"
- Top = 480
- Width = 495
- End
- Begin VB.Label Label2
- Caption = "Please enter the number of copies you wish to print :"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 360
- TabIndex = 0
- Top = 480
- Width = 4815
- End
- Attribute VB_Name = "Form2"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Number_Of_Copies = Num_Copies
- Form2.Hide
- End Sub
- Private Sub Command2_Click()
- Num_Copies.SetFocus
- Num_Copies.Text = "1"
- End Sub
-