home *** CD-ROM | disk | FTP | other *** search
/ Master 95 #1 / MASTER95_1.iso / microsof / vbasic4 / vb4-6.cab / frmabout.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-07-26  |  2.2 KB  |  75 lines

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