home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / tool / various / vbasm / about.frm next >
Text File  |  1994-06-18  |  3KB  |  103 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. End
  66. Option Explicit
  67.  
  68. Sub cmdOK_Click ()
  69.     Unload Me
  70. End Sub
  71.  
  72. Sub Form_Load ()
  73.     Dim buffer As String
  74.  
  75.     'Center form on screen
  76.     Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 2
  77.  
  78.     'Compose copyright notice
  79.     buffer = "Snooper, Version 2.00" & newLine
  80.     buffer = buffer & "Copyright " & Chr$(169) & " 1994 SoftCircuits Programming" & newLine
  81.     buffer = buffer & "Redistributed by Permission."
  82.     lblCopyright = buffer
  83.  
  84.     'Compose distribution notice
  85.     buffer = "This program may be used and distributed freely"
  86.     buffer = buffer & " on the condition that it is distributed in full"
  87.     buffer = buffer & " and unchanged, and that no fee is charged for"
  88.     buffer = buffer & " such use and distribution with the exception of"
  89.     buffer = buffer & " reasonable media and shipping charges." & newLine
  90.     buffer = buffer & "You may incorporate any of the subroutines"
  91.     buffer = buffer & " that are part of this program into your own"
  92.     buffer = buffer & " programs and use and distribute such programs"
  93.     buffer = buffer & " freely on the condition that your program does"
  94.     buffer = buffer & " not duplicate the overall functionality of"
  95.     buffer = buffer & " this program." & newLine
  96.     buffer = buffer & "This program was created by SoftCircuits Programming,"
  97.     buffer = buffer & " P.O. Box 16262, Irvine, CA 92713,"
  98.     buffer = buffer & " CompuServe: 72134,264."
  99.     lblNotice = buffer
  100.  
  101. End Sub
  102.  
  103.