VERSION 5.00
Object = "{6FBA474E-43AC-11CE-9A0E-00AA0062BB4C}#1.0#0"; "SYSINFO.OCX"
Object = "{48E59290-9880-11CF-9754-00AA00C00908}#1.0#0"; "MSINET.OCX"
Begin VB.Form OSDetectAndStatus 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "Status"
   ClientHeight    =   1035
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4560
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1035
   ScaleWidth      =   4560
   StartUpPosition =   3  'Windows Default
   Visible         =   0   'False
   Begin VB.TextBox HiddenText 
      Height          =   285
      Left            =   2760
      TabIndex        =   4
      Text            =   "Text1"
      Top             =   780
      Visible         =   0   'False
      Width           =   735
   End
   Begin VB.PictureBox Picture1 
      AutoSize        =   -1  'True
      Height          =   285
      Left            =   4140
      Picture         =   "OSDetect.frx":0000
      ScaleHeight     =   225
      ScaleWidth      =   240
      TabIndex        =   2
      Top             =   750
      Width           =   300
   End
   Begin InetCtlsObjects.Inet Inet1 
      Left            =   3360
      Top             =   30
      _ExtentX        =   1005
      _ExtentY        =   1005
      _Version        =   393216
   End
   Begin VB.CommandButton CmdCancel 
      Caption         =   "Cancel"
      Height          =   255
      Left            =   120
      TabIndex        =   1
      Top             =   750
      Width           =   1095
   End
   Begin SysInfoLib.SysInfo SysInfo1 
      Left            =   3960
      Top             =   0
      _ExtentX        =   1005
      _ExtentY        =   1005
      _Version        =   393216
   End
   Begin VB.Label GageLabel 
      Alignment       =   2  'Center
      BackColor       =   &H000000FF&
      Caption         =   "0 %"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FFFFFF&
      Height          =   255
      Left            =   90
      TabIndex        =   3
      Top             =   390
      Width           =   4395
   End
   Begin VB.Label ProgressLabel 
      Caption         =   "Progress"
      Height          =   255
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   4215
   End
End
Attribute VB_Name = "OSDetectAndStatus"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdCancel_Click()
    UserCancel = True
End Sub

Private Sub Form_Load()
    
'    If CDate(Now()) > CDate(Me.HiddenText) Then
'        Msg = Msg & "I am hopelessly out of date." & CrLf
'        Msg = Msg & "" & CrLf
'        Msg = Msg & "If you are an active tester, you need" & CrLf
'        Msg = Msg & "to go to The Gadgetorium's site and get" & CrLf
'        Msg = Msg & "a better copy.  There is certainly one now." & CrLf
'        Msg = Msg & "" & CrLf
'        Msg = Msg & "I'll quit now..." & CrLf
'        MsgBox Msg, vbExclamation, "Useful Lifetime Exeeded"
'        Suicide = True
''    End If

End Sub
