VERSION 5.00
Begin VB.Form frmWin 
   BackColor       =   &H0000FF00&
   BorderStyle     =   4  'Fixed ToolWindow
   Caption         =   "YOU WIN!!!"
   ClientHeight    =   2985
   ClientLeft      =   45
   ClientTop       =   315
   ClientWidth     =   7965
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2985
   ScaleWidth      =   7965
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton cmdQQuit 
      Caption         =   "&Quit"
      Height          =   620
      Left            =   6360
      TabIndex        =   1
      Top             =   2280
      Width           =   1500
   End
   Begin VB.CommandButton cmdOOK 
      Caption         =   "&OK"
      Height          =   620
      Left            =   120
      TabIndex        =   0
      Top             =   2280
      Width           =   1500
   End
   Begin VB.Label Label1 
      BackColor       =   &H0000FF00&
      Caption         =   "CONGRATULATIONS! YOU WIN!!!!"
      BeginProperty Font 
         Name            =   "Comic Sans MS"
         Size            =   36
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   2175
      Left            =   120
      TabIndex        =   2
      Top             =   0
      Width           =   7815
   End
End
Attribute VB_Name = "frmWin"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdOOK_Click()
Unload Me
End Sub
Private Sub cmdQQuit_Click()
End
End Sub
