home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / PROGRAM / VISBASIC / EMED16A / SAMPLES / VB / FRMABOUT.FR_ / FRMABOUT.FR
Text File  |  1994-09-06  |  4KB  |  132 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "About"
  5.    ClientHeight    =   2790
  6.    ClientLeft      =   885
  7.    ClientTop       =   2025
  8.    ClientWidth     =   4650
  9.    Height          =   3195
  10.    Left            =   825
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2790
  15.    ScaleWidth      =   4650
  16.    Top             =   1680
  17.    Width           =   4770
  18.    Begin Frame Frame1 
  19.       Height          =   15
  20.       Left            =   0
  21.       TabIndex        =   7
  22.       Top             =   720
  23.       Width           =   5295
  24.    End
  25.    Begin TextBox Text4 
  26.       Alignment       =   2  'Center
  27.       BorderStyle     =   0  'None
  28.       Enabled         =   0   'False
  29.       Height          =   195
  30.       Left            =   0
  31.       MultiLine       =   -1  'True
  32.       TabIndex        =   5
  33.       TabStop         =   0   'False
  34.       Text            =   "source code see emedit.hlp."
  35.       Top             =   1650
  36.       Width           =   4515
  37.    End
  38.    Begin TextBox Text3 
  39.       Alignment       =   2  'Center
  40.       BorderStyle     =   0  'None
  41.       Enabled         =   0   'False
  42.       Height          =   195
  43.       Left            =   30
  44.       MultiLine       =   -1  'True
  45.       TabIndex        =   4
  46.       TabStop         =   0   'False
  47.       Text            =   "To register the VBX or to order the C++"
  48.       Top             =   1440
  49.       Width           =   4545
  50.    End
  51.    Begin TextBox Text2 
  52.       Alignment       =   2  'Center
  53.       BorderStyle     =   0  'None
  54.       Enabled         =   0   'False
  55.       Height          =   195
  56.       Left            =   0
  57.       MultiLine       =   -1  'True
  58.       TabIndex        =   3
  59.       Text            =   "Morning Editor VBX."
  60.       Top             =   1110
  61.       Width           =   4515
  62.    End
  63.    Begin TextBox Text1 
  64.       Alignment       =   2  'Center
  65.       BorderStyle     =   0  'None
  66.       Enabled         =   0   'False
  67.       Height          =   195
  68.       Left            =   0
  69.       MultiLine       =   -1  'True
  70.       TabIndex        =   2
  71.       TabStop         =   0   'False
  72.       Text            =   "The Early Morning EditPad was built with the Early"
  73.       Top             =   900
  74.       Width           =   4545
  75.    End
  76.    Begin CommandButton Command1 
  77.       Caption         =   "OK"
  78.       Height          =   495
  79.       Left            =   1680
  80.       TabIndex        =   1
  81.       Top             =   2040
  82.       Width           =   915
  83.    End
  84.    Begin PictureBox Picture1 
  85.       AutoSize        =   -1  'True
  86.       BorderStyle     =   0  'None
  87.       Enabled         =   0   'False
  88.       Height          =   480
  89.       Left            =   120
  90.       Picture         =   FRMABOUT.FRX:0000
  91.       ScaleHeight     =   480
  92.       ScaleWidth      =   480
  93.       TabIndex        =   0
  94.       TabStop         =   0   'False
  95.       Top             =   120
  96.       Width           =   480
  97.    End
  98.    Begin TextBox Text9 
  99.       Alignment       =   2  'Center
  100.       BorderStyle     =   0  'None
  101.       Enabled         =   0   'False
  102.       Height          =   225
  103.       Left            =   720
  104.       MultiLine       =   -1  'True
  105.       TabIndex        =   6
  106.       TabStop         =   0   'False
  107.       Text            =   "Early Morning EditPad : Visual Basic Version"
  108.       Top             =   240
  109.       Width           =   3855
  110.    End
  111. End
  112. Option Explicit
  113.  
  114. Sub Command1_Click ()
  115.     Unload Me
  116. End Sub
  117.  
  118. Sub Form_Load ()
  119. 'Dim RegisterText As String
  120. 'RegisterText = "The Early Morning Editor is built "
  121. 'with the Early Morning Visual"
  122. 'Basic Editor Control.
  123. 'To register a copy of the Control
  124. 'send $30 to...
  125. '  Ted Stockwell
  126. '  3544 W. 83rd Place
  127. '  Chicago, IL 60652
  128. '  (312)925-1628
  129.  
  130. End Sub
  131.  
  132.