home *** CD-ROM | disk | FTP | other *** search
/ cd-rom express 12 / CDRE12.ISO / Utilities / Kyn / VB5Code.ZIP / frmAbout.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-10-07  |  4.3 KB  |  136 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BackColor       =   &H00000000&
  4.    ClientHeight    =   2730
  5.    ClientLeft      =   60
  6.    ClientTop       =   60
  7.    ClientWidth     =   4230
  8.    ControlBox      =   0   'False
  9.    HelpContextID   =   40
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   2730
  12.    ScaleWidth      =   4230
  13.    StartUpPosition =   2  'CenterScreen
  14.    Begin VB.Label lblAExit 
  15.       AutoSize        =   -1  'True
  16.       BackColor       =   &H80000007&
  17.       Caption         =   "(please click anywhere on the form)"
  18.       ForeColor       =   &H00FFFFFF&
  19.       Height          =   195
  20.       Left            =   1560
  21.       TabIndex        =   7
  22.       Top             =   2400
  23.       Width           =   2505
  24.    End
  25.    Begin VB.Label lblemail 
  26.       AutoSize        =   -1  'True
  27.       BackColor       =   &H00000000&
  28.       Caption         =   "rcarpent@seidata.com"
  29.       ForeColor       =   &H0080C0FF&
  30.       Height          =   195
  31.       Left            =   960
  32.       TabIndex        =   6
  33.       Top             =   2040
  34.       Width           =   1605
  35.    End
  36.    Begin VB.Label lblAEmail 
  37.       AutoSize        =   -1  'True
  38.       BackColor       =   &H00000000&
  39.       Caption         =   "Email:"
  40.       ForeColor       =   &H008080FF&
  41.       Height          =   195
  42.       Left            =   360
  43.       TabIndex        =   5
  44.       Top             =   2040
  45.       Width           =   420
  46.    End
  47.    Begin VB.Label lblWebsite 
  48.       AutoSize        =   -1  'True
  49.       BackColor       =   &H00000000&
  50.       Caption         =   "http://www.angelfire.com/rock/starcastle"
  51.       ForeColor       =   &H0000C0C0&
  52.       Height          =   195
  53.       Left            =   960
  54.       TabIndex        =   4
  55.       Top             =   1680
  56.       Width           =   2955
  57.    End
  58.    Begin VB.Label lblWeb 
  59.       BackColor       =   &H00000000&
  60.       Caption         =   "website:"
  61.       ForeColor       =   &H0000C000&
  62.       Height          =   255
  63.       Left            =   240
  64.       TabIndex        =   3
  65.       Top             =   1680
  66.       Width           =   615
  67.    End
  68.    Begin VB.Label lblAMsg 
  69.       BackColor       =   &H00000000&
  70.       Caption         =   "Please read the 'Help' (contents) file for information on the concept of FREEWARE."
  71.       ForeColor       =   &H000080FF&
  72.       Height          =   375
  73.       Left            =   240
  74.       TabIndex        =   2
  75.       Top             =   1080
  76.       Width           =   3735
  77.    End
  78.    Begin VB.Label lblAVer 
  79.       AutoSize        =   -1  'True
  80.       BackColor       =   &H00000000&
  81.       Caption         =   "V 1.0.0"
  82.       BeginProperty Font 
  83.          Name            =   "MS Sans Serif"
  84.          Size            =   9.75
  85.          Charset         =   0
  86.          Weight          =   400
  87.          Underline       =   0   'False
  88.          Italic          =   0   'False
  89.          Strikethrough   =   0   'False
  90.       EndProperty
  91.       ForeColor       =   &H00FF8080&
  92.       Height          =   240
  93.       Left            =   1560
  94.       TabIndex        =   1
  95.       Top             =   600
  96.       Width           =   585
  97.    End
  98.    Begin VB.Label lblATitle 
  99.       AutoSize        =   -1  'True
  100.       BackColor       =   &H00000000&
  101.       Caption         =   "Keep Your Names"
  102.       BeginProperty Font 
  103.          Name            =   "MS Sans Serif"
  104.          Size            =   13.5
  105.          Charset         =   0
  106.          Weight          =   400
  107.          Underline       =   0   'False
  108.          Italic          =   0   'False
  109.          Strikethrough   =   0   'False
  110.       EndProperty
  111.       ForeColor       =   &H000000FF&
  112.       Height          =   360
  113.       Left            =   960
  114.       TabIndex        =   0
  115.       Top             =   120
  116.       Width           =   2325
  117.    End
  118.    Begin VB.Image imgAbout 
  119.       BorderStyle     =   1  'Fixed Single
  120.       Height          =   540
  121.       Left            =   240
  122.       Picture         =   "frmAbout.frx":0000
  123.       Top             =   120
  124.       Width           =   540
  125.    End
  126. Attribute VB_Name = "frmAbout"
  127. Attribute VB_GlobalNameSpace = False
  128. Attribute VB_Creatable = False
  129. Attribute VB_PredeclaredId = True
  130. Attribute VB_Exposed = False
  131. Option Explicit
  132. Private Sub Form_Click()
  133.   frmAbout.Hide
  134.   frmMain.Show
  135. End Sub
  136.