home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form MainForm
- Caption = "Main Application"
- ClientHeight = 4020
- ClientLeft = 2595
- ClientTop = 2415
- ClientWidth = 5880
- Height = 4425
- Left = 2535
- LinkTopic = "Form2"
- ScaleHeight = 4020
- ScaleWidth = 5880
- Top = 2070
- Width = 6000
- Begin CommandButton Command1
- Caption = "Close"
- Height = 525
- Left = 2340
- TabIndex = 0
- Top = 2760
- Width = 1245
- End
- Begin VersionStamp VerStamp1
- exeComments = MAINFORM.FRX:0000
- FileVersion = MAINFORM.FRX:0199
- Left = 300
- SelectFiles = MAINFORM.FRX:01CD
- Top = 2910
- End
- Begin Label Label1
- Caption = "All required files have been verified so this application can safely run now"
- FontBold = -1 'True
- FontItalic = -1 'True
- FontName = "MS Sans Serif"
- FontSize = 22.5
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 2265
- Left = 300
- TabIndex = 1
- Top = 240
- Width = 5385
- End
- Option Explicit
- Sub Command1_Click ()
- Unload Me
- End Sub
- Sub Form_Load ()
- If Command$ <> "/verified" Then
- Warning.Show 1
- Label1.Caption = "File verification have not been performed. Unpredictable results may occur."
- Label1.Caption = "All required files have been verified so this application can safely run now"
- End If
- End Sub
-