home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form3
- BackColor = &H80000001&
- Caption = "Quit?"
- ClientHeight = 1770
- ClientLeft = 5685
- ClientTop = 4755
- ClientWidth = 4635
- LinkTopic = "Form3"
- Moveable = 0 'False
- ScaleHeight = 1770
- ScaleWidth = 4635
- Begin VB.CommandButton Command2
- Caption = "No"
- Height = 495
- Left = 2280
- TabIndex = 2
- Top = 960
- Width = 1695
- End
- Begin VB.CommandButton Command1
- Caption = "Yes"
- Height = 495
- Left = 240
- TabIndex = 1
- Top = 960
- Width = 1695
- End
- Begin VB.Label Label2
- BackColor = &H00000000&
- BackStyle = 0 'Transparent
- Caption = "Do you really want to quit?"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 18
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 555
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 4440
- End
- Attribute VB_Name = "Form3"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- End Sub
- Private Sub Command2_Click()
- Form2.Show
- Unload Me
- End Sub
-