home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 13 / CD_ASCQ_13_0494.iso / maj / 1697 / samples / frmabout.frm < prev    next >
Text File  |  1993-10-31  |  4KB  |  128 lines

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