home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / FERRAMEN / VB_ASM / SNOOPER.ZIP / ABOUT.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1994-06-19  |  3.3 KB  |  95 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "About Snooper"
  6.    ClientHeight    =   3615
  7.    ClientLeft      =   630
  8.    ClientTop       =   4470
  9.    ClientWidth     =   5775
  10.    Height          =   4020
  11.    Left            =   570
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   3615
  16.    ScaleWidth      =   5775
  17.    Top             =   4125
  18.    Width           =   5895
  19.    Begin CommandButton cmdOK 
  20.       Cancel          =   -1  'True
  21.       Caption         =   "OK"
  22.       Default         =   -1  'True
  23.       Height          =   375
  24.       Left            =   2160
  25.       TabIndex        =   1
  26.       Top             =   3120
  27.       Width           =   1455
  28.    End
  29.    Begin Line Line1 
  30.       BorderWidth     =   2
  31.       X1              =   240
  32.       X2              =   5520
  33.       Y1              =   840
  34.       Y2              =   840
  35.    End
  36.    Begin Label lblNotice 
  37.       BackColor       =   &H00C0C0C0&
  38.       FontBold        =   0   'False
  39.       FontItalic      =   0   'False
  40.       FontName        =   "MS Sans Serif"
  41.       FontSize        =   8.25
  42.       FontStrikethru  =   0   'False
  43.       FontUnderline   =   0   'False
  44.       Height          =   2055
  45.       Left            =   240
  46.       TabIndex        =   2
  47.       Top             =   960
  48.       Width           =   5295
  49.    End
  50.    Begin Label lblCopyright 
  51.       BackColor       =   &H00C0C0C0&
  52.       Height          =   615
  53.       Left            =   240
  54.       TabIndex        =   0
  55.       Top             =   120
  56.       Width           =   3975
  57.    End
  58.    Begin Image Image1 
  59.       Height          =   480
  60.       Left            =   4920
  61.       Picture         =   ABOUT.FRX:0000
  62.       Top             =   240
  63.       Width           =   480
  64.    End
  65. Option Explicit
  66. Sub cmdOK_Click ()
  67.     Unload Me
  68. End Sub
  69. Sub Form_Load ()
  70.     Dim buffer As String
  71.     'Center form on screen
  72.     Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 2
  73.     'Compose copyright notice
  74.     buffer = "Snooper, Version 2.00" & newLine
  75.     buffer = buffer & "Copyright " & Chr$(169) & " 1994 SoftCircuits Programming" & newLine
  76.     buffer = buffer & "Redistributed by Permission."
  77.     lblCopyright = buffer
  78.     'Compose distribution notice
  79.     buffer = "This program may be used and distributed freely"
  80.     buffer = buffer & " on the condition that it is distributed in full"
  81.     buffer = buffer & " and unchanged, and that no fee is charged for"
  82.     buffer = buffer & " such use and distribution with the exception of"
  83.     buffer = buffer & " reasonable media and shipping charges." & newLine
  84.     buffer = buffer & "You may incorporate any of the subroutines"
  85.     buffer = buffer & " that are part of this program into your own"
  86.     buffer = buffer & " programs and use and distribute such programs"
  87.     buffer = buffer & " freely on the condition that your program does"
  88.     buffer = buffer & " not duplicate the overall functionality of"
  89.     buffer = buffer & " this program." & newLine
  90.     buffer = buffer & "This program was created by SoftCircuits Programming,"
  91.     buffer = buffer & " P.O. Box 16262, Irvine, CA 92713,"
  92.     buffer = buffer & " CompuServe: 72134,264."
  93.     lblNotice = buffer
  94. End Sub
  95.