home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VCM / VCM.MDB / VcmComponentContainer / 10_Cabinet / frmabout.frm (.txt) next >
Encoding:
Visual Basic Form  |  1998-05-18  |  2.2 KB  |  74 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About"
  5.    ClientHeight    =   3855
  6.    ClientLeft      =   1305
  7.    ClientTop       =   1485
  8.    ClientWidth     =   6000
  9.    Icon            =   "frmabout.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   3855
  14.    ScaleWidth      =   6000
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.CommandButton cmdOk 
  18.       Cancel          =   -1  'True
  19.       Caption         =   "O&k"
  20.       Default         =   -1  'True
  21.       Height          =   375
  22.       Left            =   4800
  23.       TabIndex        =   3
  24.       Top             =   3300
  25.       Width           =   945
  26.    End
  27.    Begin VB.Label Label3 
  28.       Caption         =   $"frmabout.frx":000C
  29.       Height          =   1575
  30.       Left            =   240
  31.       TabIndex        =   2
  32.       Top             =   1620
  33.       Width           =   5475
  34.    End
  35.    Begin VB.Line Line1 
  36.       BorderColor     =   &H00FF0000&
  37.       X1              =   240
  38.       X2              =   5760
  39.       Y1              =   720
  40.       Y2              =   720
  41.    End
  42.    Begin VB.Label Label2 
  43.       Caption         =   $"frmabout.frx":01E5
  44.       Height          =   735
  45.       Left            =   240
  46.       TabIndex        =   1
  47.       Top             =   780
  48.       Width           =   5475
  49.    End
  50.    Begin VB.Label Label1 
  51.       Alignment       =   2  'Center
  52.       Caption         =   "This is a demonstration of the Data Access capabilities of the standard ListBox control and ComboBox control."
  53.       Height          =   495
  54.       Left            =   600
  55.       TabIndex        =   0
  56.       Top             =   120
  57.       Width           =   4635
  58.    End
  59. Attribute VB_Name = "frmAbout"
  60. Attribute VB_GlobalNameSpace = False
  61. Attribute VB_Creatable = False
  62. Attribute VB_PredeclaredId = True
  63. Attribute VB_Exposed = False
  64. Option Explicit
  65. Private Sub cmdOk_Click()
  66.     Unload Me
  67. End Sub
  68. Private Sub Form_Load()
  69.     '
  70.     ' center form
  71.     '
  72.     Me.Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2
  73. End Sub
  74.