home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / polygo / polyabou.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-07  |  2.9 KB  |  102 lines

  1. VERSION 2.00
  2. Begin Form PolyAbout 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "About PolyGone"
  5.    ClientHeight    =   1875
  6.    ClientLeft      =   2820
  7.    ClientTop       =   2745
  8.    ClientWidth     =   3960
  9.    ControlBox      =   0   'False
  10.    Height          =   2280
  11.    Left            =   2760
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   1875
  16.    ScaleWidth      =   3960
  17.    Top             =   2400
  18.    Width           =   4080
  19.    Begin CommandButton cmdOK 
  20.       Caption         =   "OK"
  21.       Height          =   375
  22.       Left            =   120
  23.       TabIndex        =   6
  24.       Top             =   1320
  25.       Width           =   735
  26.    End
  27.    Begin Image Image1 
  28.       Height          =   480
  29.       Left            =   240
  30.       Top             =   240
  31.       Width           =   480
  32.    End
  33.    Begin Label Label1 
  34.       Alignment       =   2  'Center
  35.       Caption         =   "CIS 76630,2012"
  36.       Height          =   255
  37.       Index           =   5
  38.       Left            =   840
  39.       TabIndex        =   5
  40.       Top             =   1560
  41.       Width           =   3135
  42.    End
  43.    Begin Label Label1 
  44.       Alignment       =   2  'Center
  45.       Caption         =   "PO Box 599  Plymouth, MI 48170"
  46.       Height          =   255
  47.       Index           =   4
  48.       Left            =   840
  49.       TabIndex        =   4
  50.       Top             =   1200
  51.       Width           =   3135
  52.    End
  53.    Begin Label Label1 
  54.       Alignment       =   2  'Center
  55.       Caption         =   "Editing Services Co"
  56.       Height          =   255
  57.       Index           =   3
  58.       Left            =   840
  59.       TabIndex        =   3
  60.       Top             =   960
  61.       Width           =   3135
  62.    End
  63.    Begin Label Label1 
  64.       Alignment       =   2  'Center
  65.       Caption         =   "Written by Jim Mack"
  66.       Height          =   255
  67.       Index           =   2
  68.       Left            =   840
  69.       TabIndex        =   2
  70.       Top             =   720
  71.       Width           =   3135
  72.    End
  73.    Begin Label Label1 
  74.       Alignment       =   2  'Center
  75.       Caption         =   "Version 2.00       January 1994"
  76.       Height          =   255
  77.       Index           =   1
  78.       Left            =   840
  79.       TabIndex        =   1
  80.       Top             =   360
  81.       Width           =   3135
  82.    End
  83.    Begin Label Label1 
  84.       Alignment       =   2  'Center
  85.       Caption         =   "PolyGone"
  86.       Height          =   255
  87.       Index           =   0
  88.       Left            =   840
  89.       TabIndex        =   0
  90.       Top             =   120
  91.       Width           =   3135
  92.    End
  93.    DefInt A-Z
  94. Sub cmdOK_Click ()
  95.    Unload Me
  96. End Sub
  97. Sub Form_Load ()
  98.    Me.Left = (Screen.Width - Width) \ 2
  99.    Me.Top = (Screen.Height - Height) \ 2
  100.    Image1.Picture = PolyForm.Icon
  101. End Sub
  102.