home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / PVb5.0 / VB / SAMPLES / PGUIDE / OPTIMIZE / ABOUT.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1997-01-22  |  4.3 KB  |  141 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    Appearance      =   0  'Flat
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    Caption         =   "
  6.  Visual Basic 5.0"
  7.    ClientHeight    =   2205
  8.    ClientLeft      =   2040
  9.    ClientTop       =   2040
  10.    ClientWidth     =   4830
  11.    ClipControls    =   0   'False
  12.    ControlBox      =   0   'False
  13.    BeginProperty Font 
  14.       Name            =   "
  15.       Size            =   9
  16.       Charset         =   134
  17.       Weight          =   700
  18.       Underline       =   0   'False
  19.       Italic          =   0   'False
  20.       Strikethrough   =   0   'False
  21.    EndProperty
  22.    ForeColor       =   &H80000008&
  23.    Icon            =   "ABOUT.frx":0000
  24.    LinkTopic       =   "Form1"
  25.    MaxButton       =   0   'False
  26.    MinButton       =   0   'False
  27.    PaletteMode     =   1  'UseZOrder
  28.    ScaleHeight     =   2205
  29.    ScaleWidth      =   4830
  30.    ShowInTaskbar   =   0   'False
  31.    WhatsThisHelp   =   -1  'True
  32.    Begin VB.CommandButton ExitButton 
  33.       Appearance      =   0  'Flat
  34.       BackColor       =   &H80000005&
  35.       Caption         =   "
  36. (&O)"
  37.       Default         =   -1  'True
  38.       BeginProperty Font 
  39.          Name            =   "
  40.          Size            =   9
  41.          Charset         =   134
  42.          Weight          =   400
  43.          Underline       =   0   'False
  44.          Italic          =   0   'False
  45.          Strikethrough   =   0   'False
  46.       EndProperty
  47.       Height          =   375
  48.       Left            =   3700
  49.       TabIndex        =   3
  50.       Top             =   135
  51.       Width           =   1050
  52.    End
  53.    Begin VB.Image Image1 
  54.       Height          =   480
  55.       Left            =   195
  56.       Picture         =   "ABOUT.frx":030A
  57.       Top             =   195
  58.       Width           =   480
  59.    End
  60.    Begin VB.Line Line1 
  61.       BorderColor     =   &H00808080&
  62.       Index           =   1
  63.       X1              =   840
  64.       X2              =   4680
  65.       Y1              =   1260
  66.       Y2              =   1260
  67.    End
  68.    Begin VB.Line Line1 
  69.       BorderColor     =   &H00FFFFFF&
  70.       BorderWidth     =   2
  71.       Index           =   0
  72.       X1              =   840
  73.       X2              =   4680
  74.       Y1              =   1275
  75.       Y2              =   1275
  76.    End
  77.    Begin VB.Label lblDesc 
  78.       Alignment       =   2  'Center
  79.       Appearance      =   0  'Flat
  80.       BackColor       =   &H00C0C0C0&
  81.       BackStyle       =   0  'Transparent
  82.       Caption         =   "
  83.  Visual Basic 
  84.       BeginProperty Font 
  85.          Name            =   "
  86.          Size            =   9
  87.          Charset         =   134
  88.          Weight          =   400
  89.          Underline       =   0   'False
  90.          Italic          =   0   'False
  91.          Strikethrough   =   0   'False
  92.       EndProperty
  93.       ForeColor       =   &H00800000&
  94.       Height          =   465
  95.       Left            =   960
  96.       TabIndex        =   0
  97.       Top             =   720
  98.       Width           =   2055
  99.    End
  100.    Begin VB.Label lblCredits 
  101.       Appearance      =   0  'Flat
  102.       BackColor       =   &H00C0C0C0&
  103.       BackStyle       =   0  'Transparent
  104.       Caption         =   "1997 - Microsoft Corporation"
  105.       ForeColor       =   &H00800000&
  106.       Height          =   435
  107.       Left            =   900
  108.       TabIndex        =   1
  109.       Top             =   1395
  110.       Width           =   3315
  111.    End
  112.    Begin VB.Label lblAppInfo 
  113.       Appearance      =   0  'Flat
  114.       BackColor       =   &H00C0C0C0&
  115.       BackStyle       =   0  'Transparent
  116.       ForeColor       =   &H00800000&
  117.       Height          =   525
  118.       Left            =   900
  119.       TabIndex        =   2
  120.       Top             =   195
  121.       Width           =   2655
  122.    End
  123. Attribute VB_Name = "frmAbout"
  124. Attribute VB_GlobalNameSpace = False
  125. Attribute VB_Creatable = False
  126. Attribute VB_PredeclaredId = True
  127. Attribute VB_Exposed = False
  128. Option Explicit
  129. Private Sub ExitButton_Click()
  130.     Unload Me
  131. End Sub
  132. Private Sub Form_Load()
  133.     CenterMe Me
  134.     DoEvents
  135.     lblAppInfo = "
  136.  Visual Basic 5.0" & _
  137.                       vbCrLf & _
  138.                       "Ver. " & App.Major & "." & App.Minor & _
  139.                       " - Build " & LastAppUpdate
  140. End Sub
  141.