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 / BIBLIO / FRMABOUT.FRM (.txt) < prev   
Encoding:
Visual Basic Form  |  1996-10-15  |  2.5 KB  |  81 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BackColor       =   &H00FFFF80&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "About BIBLIO"
  6.    ClientHeight    =   1920
  7.    ClientLeft      =   1995
  8.    ClientTop       =   4455
  9.    ClientWidth     =   5595
  10.    ControlBox      =   0   'False
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    PaletteMode     =   1  'UseZOrder
  15.    ScaleHeight     =   1920
  16.    ScaleWidth      =   5595
  17.    StartUpPosition =   2  'CenterScreen
  18.    Begin VB.CommandButton Command1 
  19.       BackColor       =   &H00FFFF80&
  20.       Caption         =   "OK"
  21.       Default         =   -1  'True
  22.       Height          =   375
  23.       Left            =   2160
  24.       TabIndex        =   0
  25.       Top             =   1320
  26.       Width           =   1215
  27.    End
  28.    Begin VB.Label Label3 
  29.       BackColor       =   &H00FFFF80&
  30.       Caption         =   "Copyright (c) 1995 Microsoft Corporation"
  31.       Height          =   255
  32.       Left            =   1320
  33.       TabIndex        =   3
  34.       Top             =   960
  35.       Width           =   2895
  36.    End
  37.    Begin VB.Label Label2 
  38.       BackColor       =   &H00FFFF80&
  39.       Caption         =   "Data Control Sample Application"
  40.       BeginProperty Font 
  41.          Name            =   "MS Sans Serif"
  42.          Size            =   9.75
  43.          Charset         =   0
  44.          Weight          =   400
  45.          Underline       =   0   'False
  46.          Italic          =   0   'False
  47.          Strikethrough   =   0   'False
  48.       EndProperty
  49.       Height          =   255
  50.       Left            =   1320
  51.       TabIndex        =   2
  52.       Top             =   480
  53.       Width           =   3015
  54.    End
  55.    Begin VB.Label Label1 
  56.       BackColor       =   &H00FFFF80&
  57.       Caption         =   "BIBLIO -- Bibliography Database Browser"
  58.       BeginProperty Font 
  59.          Name            =   "MS Sans Serif"
  60.          Size            =   12
  61.          Charset         =   0
  62.          Weight          =   700
  63.          Underline       =   0   'False
  64.          Italic          =   0   'False
  65.          Strikethrough   =   0   'False
  66.       EndProperty
  67.       Height          =   375
  68.       Left            =   240
  69.       TabIndex        =   1
  70.       Top             =   120
  71.       Width           =   5175
  72.    End
  73. Attribute VB_Name = "frmAbout"
  74. Attribute VB_GlobalNameSpace = False
  75. Attribute VB_Creatable = False
  76. Attribute VB_PredeclaredId = True
  77. Attribute VB_Exposed = False
  78. Private Sub Command1_Click()
  79.     Unload frmAbout
  80. End Sub
  81.