home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 5 Developer's Kit / vb5 dev kit.iso / dev / ct_ocx / ct_about.frm (.txt) next >
Encoding:
Visual Basic Form  |  1995-12-16  |  4.5 KB  |  152 lines

  1. VERSION 4.00
  2. Begin VB.Form w_about 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    Caption         =   "About Component Toolbox"
  6.    ClientHeight    =   3375
  7.    ClientLeft      =   2025
  8.    ClientTop       =   3075
  9.    ClientWidth     =   6270
  10.    Height          =   3780
  11.    Icon            =   "ct_about.frx":0000
  12.    Left            =   1965
  13.    LinkTopic       =   "Form1"
  14.    ScaleHeight     =   3375
  15.    ScaleWidth      =   6270
  16.    ShowInTaskbar   =   0   'False
  17.    Top             =   2730
  18.    Width           =   6390
  19.    Begin VB.CommandButton Command1 
  20.       Caption         =   "OK"
  21.       Height          =   375
  22.       Left            =   5100
  23.       TabIndex        =   1
  24.       Top             =   2880
  25.       Width           =   915
  26.    End
  27.    Begin VB.Label Label9 
  28.       Caption         =   "Order : 1-800-670-8045"
  29.       Height          =   285
  30.       Left            =   240
  31.       TabIndex        =   9
  32.       Top             =   2880
  33.       Width           =   2175
  34.    End
  35.    Begin VB.Label Label8 
  36.       Caption         =   "Fax : (204) 284-3307"
  37.       Height          =   285
  38.       Left            =   240
  39.       TabIndex        =   8
  40.       Top             =   2610
  41.       Width           =   2115
  42.    End
  43.    Begin VB.Label Label7 
  44.       Caption         =   "Phone : (204) 475-7903"
  45.       Height          =   285
  46.       Left            =   240
  47.       TabIndex        =   7
  48.       Top             =   2340
  49.       Width           =   2235
  50.    End
  51.    Begin VB.Label Label6 
  52.       Caption         =   "Winnipeg MB. R3M 0T7 Canada"
  53.       Height          =   285
  54.       Left            =   240
  55.       TabIndex        =   6
  56.       Top             =   2070
  57.       Width           =   2595
  58.    End
  59.    Begin VB.Label Label5 
  60.       Caption         =   "1161 McMillan Avenue"
  61.       Height          =   285
  62.       Left            =   240
  63.       TabIndex        =   5
  64.       Top             =   1800
  65.       Width           =   2655
  66.    End
  67.    Begin VB.Label Label4 
  68.       Caption         =   "Copyright (C) 1996 Gamesman Inc."
  69.       Height          =   285
  70.       Left            =   240
  71.       TabIndex        =   4
  72.       Top             =   1530
  73.       Width           =   2595
  74.    End
  75.    Begin VB.Label Label3 
  76.       Alignment       =   1  'Right Justify
  77.       Caption         =   "Jan. 96 Demo"
  78.       ForeColor       =   &H00800000&
  79.       Height          =   285
  80.       Left            =   4800
  81.       TabIndex        =   3
  82.       Top             =   1350
  83.       Width           =   1215
  84.    End
  85.    Begin VB.Line Line2 
  86.       BorderColor     =   &H00FFFFFF&
  87.       X1              =   1320
  88.       X2              =   6000
  89.       Y1              =   1170
  90.       Y2              =   1170
  91.    End
  92.    Begin VB.Line Line1 
  93.       BorderColor     =   &H00808080&
  94.       BorderWidth     =   2
  95.       X1              =   1320
  96.       X2              =   6000
  97.       Y1              =   1170
  98.       Y2              =   1170
  99.    End
  100.    Begin VB.Label Label2 
  101.       Caption         =   "Version 1.0"
  102.       BeginProperty Font 
  103.          name            =   "Arial"
  104.          charset         =   0
  105.          weight          =   700
  106.          size            =   18
  107.          underline       =   0   'False
  108.          italic          =   0   'False
  109.          strikethrough   =   0   'False
  110.       EndProperty
  111.       Height          =   375
  112.       Left            =   1380
  113.       TabIndex        =   2
  114.       Top             =   630
  115.       Width           =   2715
  116.    End
  117.    Begin VB.Image Image1 
  118.       Height          =   960
  119.       Left            =   180
  120.       Picture         =   "ct_about.frx":030A
  121.       Top             =   180
  122.       Width           =   960
  123.    End
  124.    Begin VB.Label Label1 
  125.       BackColor       =   &H00C0C0C0&
  126.       Caption         =   "Component Toolbox OCX"
  127.       BeginProperty Font 
  128.          name            =   "Arial"
  129.          charset         =   0
  130.          weight          =   700
  131.          size            =   18
  132.          underline       =   0   'False
  133.          italic          =   0   'False
  134.          strikethrough   =   0   'False
  135.       EndProperty
  136.       Height          =   555
  137.       Left            =   1380
  138.       TabIndex        =   0
  139.       Top             =   180
  140.       Width           =   4575
  141.    End
  142. Attribute VB_Name = "w_about"
  143. Attribute VB_Creatable = False
  144. Attribute VB_Exposed = False
  145. Private Sub Command1_Click()
  146.    Unload w_about
  147. End Sub
  148. Private Sub Form_Load()
  149.    ' Center the window on the screen
  150.    Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 2
  151. End Sub
  152.