home *** CD-ROM | disk | FTP | other *** search
/ Master 95 #1 / MASTER95_1.iso / microsof / vbasic4 / vb4-6.cab / about2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-07-26  |  1.9 KB  |  56 lines

  1. VERSION 4.00
  2. Begin VB.Form About 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About Spy"
  5.    ClientHeight    =   2025
  6.    ClientLeft      =   2355
  7.    ClientTop       =   1875
  8.    ClientWidth     =   5460
  9.    ControlBox      =   0   'False
  10.    Height          =   2430
  11.    Left            =   2295
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   2025
  16.    ScaleWidth      =   5460
  17.    ShowInTaskbar   =   0   'False
  18.    Top             =   1530
  19.    Visible         =   0   'False
  20.    Width           =   5580
  21.    Begin VB.CommandButton Command1 
  22.       Cancel          =   -1  'True
  23.       Caption         =   "OK"
  24.       Default         =   -1  'True
  25.       Height          =   315
  26.       Left            =   2160
  27.       TabIndex        =   1
  28.       Top             =   1680
  29.       Width           =   1095
  30.    End
  31.    Begin VB.TextBox txtAbout 
  32.       Height          =   1605
  33.       Left            =   30
  34.       Locked          =   -1  'True
  35.       MultiLine       =   -1  'True
  36.       TabIndex        =   0
  37.       Top             =   30
  38.       Width           =   5355
  39.    End
  40. Attribute VB_Name = "About"
  41. Attribute VB_Creatable = False
  42. Attribute VB_Exposed = False
  43. Private Sub Command1_Click()
  44.     Unload Me
  45. End Sub
  46. Private Sub Form_Activate()
  47.     SetFocus
  48. End Sub
  49. Private Sub Form_Load()
  50.     With Screen
  51.         Left = (.Width - Width) / 2
  52.         TOP = (.Height - Height) / 2
  53.     End With
  54.     txtAbout.TEXT = "The Spy add-in has been added to the VB.INI add-in registry, and is running.  To use the Spy add-in, start an instance of Visual Basic, and then use the Add-In Manager in the new instance of Visual Basic to add the 'File Event Spy Sample Addin'.  The Spy File Events box will then show all file control events from Visual Basic.  To temporarily disable the logging of file events, uncheck the Spy menu line in the Add-Ins menu."
  55. End Sub
  56.