home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / source / chap36 / frmabout.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-08-02  |  2.3 KB  |  78 lines

  1. VERSION 4.00
  2. Begin VB.Form frmAbout 
  3.    Caption         =   "About Best Team Selector"
  4.    ClientHeight    =   2505
  5.    ClientLeft      =   1140
  6.    ClientTop       =   1515
  7.    ClientWidth     =   3000
  8.    Height          =   2910
  9.    Left            =   1080
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   2505
  12.    ScaleWidth      =   3000
  13.    Top             =   1170
  14.    Width           =   3120
  15.    Begin VB.PictureBox Picture1 
  16.       Height          =   1935
  17.       Left            =   0
  18.       ScaleHeight     =   1875
  19.       ScaleWidth      =   2895
  20.       TabIndex        =   1
  21.       Top             =   0
  22.       Width           =   2955
  23.       Begin VB.Label Label1 
  24.          Alignment       =   2  'Center
  25.          Caption         =   "Created by Frank Font 1995"
  26.          Height          =   315
  27.          Left            =   240
  28.          TabIndex        =   3
  29.          Top             =   1170
  30.          Width           =   2445
  31.       End
  32.       Begin VB.Label lblVersion 
  33.          Alignment       =   2  'Center
  34.          BeginProperty Font 
  35.             name            =   "MS Sans Serif"
  36.             charset         =   0
  37.             weight          =   700
  38.             size            =   12
  39.             underline       =   0   'False
  40.             italic          =   0   'False
  41.             strikethrough   =   0   'False
  42.          EndProperty
  43.          Height          =   375
  44.          Left            =   60
  45.          TabIndex        =   2
  46.          Top             =   1470
  47.          Width           =   2835
  48.       End
  49.       Begin VB.Image Image1 
  50.          Height          =   960
  51.          Left            =   240
  52.          Picture         =   "frmAbout.frx":0000
  53.          Top             =   150
  54.          Width           =   2490
  55.       End
  56.    End
  57.    Begin VB.CommandButton cmdOK 
  58.       Caption         =   "&OK"
  59.       Height          =   525
  60.       Left            =   30
  61.       TabIndex        =   0
  62.       Top             =   1980
  63.       Width           =   2925
  64.    End
  65. Attribute VB_Name = "frmAbout"
  66. Attribute VB_Creatable = False
  67. Attribute VB_Exposed = False
  68. Option Explicit
  69. Private Sub cmdOK_Click()
  70.   Unload frmAbout
  71. End Sub
  72. Private Sub Form_Load()
  73.   Left = (Screen.Width - Width) / 2
  74.   TOP = (Screen.Height - Height) / 2
  75.   lblVersion.Caption = gProgramVersion
  76.   MousePointer = 0
  77. End Sub
  78.