home *** CD-ROM | disk | FTP | other *** search
/ Dan Appleman's Visual Bas…s Guide to the Win32 API / Dan.Applmans.Visual.Basic.5.0.Programmers.Guide.To.The.Win32.API.1997.Ziff-Davis.Press.CD / VB5PG32.mdf / articles / vbbultn / source / mainform.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-02-13  |  1.7 KB  |  55 lines

  1. VERSION 2.00
  2. Begin Form MainForm 
  3.    Caption         =   "Main Application"
  4.    ClientHeight    =   4020
  5.    ClientLeft      =   2595
  6.    ClientTop       =   2415
  7.    ClientWidth     =   5880
  8.    Height          =   4425
  9.    Left            =   2535
  10.    LinkTopic       =   "Form2"
  11.    ScaleHeight     =   4020
  12.    ScaleWidth      =   5880
  13.    Top             =   2070
  14.    Width           =   6000
  15.    Begin CommandButton Command1 
  16.       Caption         =   "Close"
  17.       Height          =   525
  18.       Left            =   2340
  19.       TabIndex        =   0
  20.       Top             =   2760
  21.       Width           =   1245
  22.    End
  23.    Begin VersionStamp VerStamp1 
  24.       exeComments     =   MAINFORM.FRX:0000
  25.       FileVersion     =   MAINFORM.FRX:0199
  26.       Left            =   300
  27.       SelectFiles     =   MAINFORM.FRX:01CD
  28.       Top             =   2910
  29.    End
  30.    Begin Label Label1 
  31.       Caption         =   "All required files have been verified so this application can safely run now"
  32.       FontBold        =   -1  'True
  33.       FontItalic      =   -1  'True
  34.       FontName        =   "MS Sans Serif"
  35.       FontSize        =   22.5
  36.       FontStrikethru  =   0   'False
  37.       FontUnderline   =   0   'False
  38.       Height          =   2265
  39.       Left            =   300
  40.       TabIndex        =   1
  41.       Top             =   240
  42.       Width           =   5385
  43.    End
  44. Option Explicit
  45. Sub Command1_Click ()
  46. Unload Me
  47. End Sub
  48. Sub Form_Load ()
  49. If Command$ <> "/verified" Then
  50.     Warning.Show 1
  51.     Label1.Caption = "File verification have not been performed.  Unpredictable results may occur."
  52.     Label1.Caption = "All required files have been verified so this application can safely run now"
  53. End If
  54. End Sub
  55.