home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual BASIC 5.0 (Ent. Edition) / Vb5ent Extractor.EXE / VB / SAMPLES / PGUIDE / OPTIMIZE / ABOUT.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1996-09-16  |  4.1 KB  |  132 lines

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