home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 May / cica_0595_4.zip / cica_0595_4 / UTIL / WSPRTERM / FABOUT.FRM < prev    next >
Text File  |  1994-07-10  |  5KB  |  159 lines

  1. VERSION 2.00
  2. Begin Form FAbout 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "About WSPRTERM"
  5.    ClientHeight    =   4425
  6.    ClientLeft      =   1740
  7.    ClientTop       =   1410
  8.    ClientWidth     =   4455
  9.    ClipControls    =   0   'False
  10.    ControlBox      =   0   'False
  11.    Height          =   4860
  12.    Left            =   1665
  13.    LinkTopic       =   "Form1"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   4425
  17.    ScaleWidth      =   4455
  18.    Top             =   1050
  19.    Width           =   4605
  20.    Begin CommandButton Command1 
  21.       Caption         =   "OK"
  22.       Default         =   -1  'True
  23.       Height          =   330
  24.       Left            =   1665
  25.       TabIndex        =   0
  26.       Top             =   3105
  27.       Width           =   1140
  28.    End
  29.    Begin Label Label6 
  30.       Alignment       =   2  'Center
  31.       BackStyle       =   0  'Transparent
  32.       Caption         =   "Copyright 1994"
  33.       FontBold        =   0   'False
  34.       FontItalic      =   0   'False
  35.       FontName        =   "MS Sans Serif"
  36.       FontSize        =   8.25
  37.       FontStrikethru  =   0   'False
  38.       FontUnderline   =   0   'False
  39.       Height          =   240
  40.       Left            =   0
  41.       TabIndex        =   8
  42.       Top             =   3555
  43.       Width           =   4470
  44.    End
  45.    Begin Label Label5 
  46.       Alignment       =   2  'Center
  47.       BackStyle       =   0  'Transparent
  48.       Caption         =   "All Rights Reserved"
  49.       FontBold        =   0   'False
  50.       FontItalic      =   0   'False
  51.       FontName        =   "MS Sans Serif"
  52.       FontSize        =   8.25
  53.       FontStrikethru  =   0   'False
  54.       FontUnderline   =   0   'False
  55.       Height          =   240
  56.       Left            =   0
  57.       TabIndex        =   7
  58.       Top             =   4005
  59.       Width           =   4470
  60.    End
  61.    Begin Label Label4 
  62.       Alignment       =   1  'Right Justify
  63.       BackStyle       =   0  'Transparent
  64.       Caption         =   "efh"
  65.       FontBold        =   0   'False
  66.       FontItalic      =   -1  'True
  67.       FontName        =   "Times New Roman"
  68.       FontSize        =   8.25
  69.       FontStrikethru  =   0   'False
  70.       FontUnderline   =   0   'False
  71.       Height          =   240
  72.       Left            =   3960
  73.       TabIndex        =   6
  74.       Top             =   4185
  75.       Width           =   465
  76.    End
  77.    Begin Label LVersion 
  78.       Alignment       =   2  'Center
  79.       BackStyle       =   0  'Transparent
  80.       Caption         =   "Sample Version"
  81.       Height          =   240
  82.       Left            =   0
  83.       TabIndex        =   5
  84.       Top             =   1125
  85.       Width           =   4470
  86.    End
  87.    Begin Label LCopyright 
  88.       Alignment       =   2  'Center
  89.       BackStyle       =   0  'Transparent
  90.       Caption         =   "Whisper Computer Solutions of San Antonio"
  91.       FontBold        =   0   'False
  92.       FontItalic      =   0   'False
  93.       FontName        =   "MS Sans Serif"
  94.       FontSize        =   8.25
  95.       FontStrikethru  =   0   'False
  96.       FontUnderline   =   0   'False
  97.       Height          =   240
  98.       Left            =   0
  99.       TabIndex        =   4
  100.       Top             =   3780
  101.       Width           =   4470
  102.    End
  103.    Begin Label Label3 
  104.       Alignment       =   2  'Center
  105.       BackStyle       =   0  'Transparent
  106.       Caption         =   "This program is a stripped down sample terminal emulation program covering a wide variety of features.  If you find this program useful in your development efforts, please contribute to ours by sending us either a mere $10 or your own enhancements.  We can be contacted on Compuserve at 75540,1770."
  107.       Height          =   1410
  108.       Left            =   0
  109.       TabIndex        =   3
  110.       Top             =   1530
  111.       Width           =   4470
  112.    End
  113.    Begin Label Label2 
  114.       Alignment       =   2  'Center
  115.       AutoSize        =   -1  'True
  116.       BackStyle       =   0  'Transparent
  117.       Caption         =   "Whisper Terminal For Windows"
  118.       Height          =   195
  119.       Left            =   915
  120.       TabIndex        =   2
  121.       Top             =   855
  122.       Width           =   2640
  123.    End
  124.    Begin Label Label1 
  125.       Alignment       =   2  'Center
  126.       BackStyle       =   0  'Transparent
  127.       Caption         =   "WSPRTERM"
  128.       Height          =   240
  129.       Left            =   0
  130.       TabIndex        =   1
  131.       Top             =   360
  132.       Width           =   4470
  133.    End
  134.    Begin Image Image1 
  135.       Height          =   480
  136.       Left            =   765
  137.       Picture         =   FABOUT.FRX:0000
  138.       Top             =   180
  139.       Width           =   480
  140.    End
  141. End
  142. Option Explicit
  143.  
  144. Sub Command1_Click ()
  145.  
  146.     'FMain.Enabled = True
  147.     'FMain.SetFocus
  148.     Unload FAbout
  149.  
  150. End Sub
  151.  
  152. Sub Form_Load ()
  153.  
  154.     CenterForm FAbout
  155.     LVersion.Caption = "Sample Version " & version
  156.  
  157. End Sub
  158.  
  159.