home *** CD-ROM | disk | FTP | other *** search
/ Computer PanorĂ¡ma / computer_panorama_1997-12-hibas.iso / SHARE / NET / TCPCHAT / TCPCHAT.ZIP / frmAbout.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-09-05  |  3.9 KB  |  126 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About TCP Chatter"
  5.    ClientHeight    =   3555
  6.    ClientLeft      =   2340
  7.    ClientTop       =   1935
  8.    ClientWidth     =   5730
  9.    ClipControls    =   0   'False
  10.    Icon            =   "frmAbout.frx":0000
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2453.724
  15.    ScaleMode       =   0  'User
  16.    ScaleWidth      =   5380.766
  17.    ShowInTaskbar   =   0   'False
  18.    Begin VB.PictureBox picIcon 
  19.       AutoSize        =   -1  'True
  20.       ClipControls    =   0   'False
  21.       Height          =   540
  22.       Left            =   240
  23.       Picture         =   "frmAbout.frx":0442
  24.       ScaleHeight     =   337.12
  25.       ScaleMode       =   0  'User
  26.       ScaleWidth      =   337.12
  27.       TabIndex        =   1
  28.       Top             =   240
  29.       Width           =   540
  30.    End
  31.    Begin VB.CommandButton cmdOK 
  32.       Cancel          =   -1  'True
  33.       Caption         =   "OK"
  34.       Default         =   -1  'True
  35.       Height          =   345
  36.       Left            =   4200
  37.       TabIndex        =   0
  38.       Top             =   2880
  39.       Width           =   1260
  40.    End
  41.    Begin VB.Label Label2 
  42.       Caption         =   "http://www.geocities.com/SiliconValley/Pines/5427/"
  43.       Height          =   225
  44.       Left            =   960
  45.       TabIndex        =   7
  46.       Top             =   2040
  47.       Width           =   3885
  48.    End
  49.    Begin VB.Label Label1 
  50.       Caption         =   "sriggins@geocities.com"
  51.       Height          =   225
  52.       Left            =   960
  53.       TabIndex        =   6
  54.       Top             =   1800
  55.       Width           =   3885
  56.    End
  57.    Begin VB.Line Line1 
  58.       BorderColor     =   &H00808080&
  59.       BorderStyle     =   6  'Inside Solid
  60.       Index           =   1
  61.       X1              =   84.515
  62.       X2              =   5309.398
  63.       Y1              =   1687.583
  64.       Y2              =   1687.583
  65.    End
  66.    Begin VB.Label lblDescription 
  67.       Caption         =   $"frmAbout.frx":0884
  68.       ForeColor       =   &H00000000&
  69.       Height          =   810
  70.       Left            =   960
  71.       TabIndex        =   2
  72.       Top             =   840
  73.       Width           =   3885
  74.    End
  75.    Begin VB.Label lblTitle 
  76.       Caption         =   "TCP Chatter - Copyright 1997 by Shawn Riggins"
  77.       ForeColor       =   &H00000000&
  78.       Height          =   240
  79.       Left            =   960
  80.       TabIndex        =   4
  81.       Top             =   240
  82.       Width           =   3885
  83.    End
  84.    Begin VB.Line Line1 
  85.       BorderColor     =   &H00FFFFFF&
  86.       BorderWidth     =   2
  87.       Index           =   0
  88.       X1              =   98.6
  89.       X2              =   5309.398
  90.       Y1              =   1697.936
  91.       Y2              =   1697.936
  92.    End
  93.    Begin VB.Label lblVersion 
  94.       Caption         =   "Version 1.0"
  95.       Height          =   225
  96.       Left            =   960
  97.       TabIndex        =   5
  98.       Top             =   480
  99.       Width           =   1365
  100.    End
  101.    Begin VB.Label lblDisclaimer 
  102.       Caption         =   $"frmAbout.frx":093B
  103.       ForeColor       =   &H00000000&
  104.       Height          =   825
  105.       Left            =   255
  106.       TabIndex        =   3
  107.       Top             =   2625
  108.       Width           =   3870
  109.    End
  110. Attribute VB_Name = "frmAbout"
  111. Attribute VB_GlobalNameSpace = False
  112. Attribute VB_Creatable = False
  113. Attribute VB_PredeclaredId = True
  114. Attribute VB_Exposed = False
  115. ' TCP Chatter
  116. ' Copyright 1997 by Shawn Riggins
  117. ' Use this program at your own risk.
  118. ' This program is freeware and you are welcome to use the
  119. ' source code for whatever you want.  Just remember, anything
  120. ' you do with the source code is done at your OWN RISK
  121. Option Explicit
  122. Private Sub cmdOK_Click()
  123.        
  124.     Unload Me
  125. End Sub
  126.