home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD1836.psc / frmHelp.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-11-16  |  1.3 KB  |  44 lines

  1. VERSION 5.00
  2. Begin VB.Form frmHelp 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Help File"
  5.    ClientHeight    =   4515
  6.    ClientLeft      =   2760
  7.    ClientTop       =   3750
  8.    ClientWidth     =   7035
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   4515
  13.    ScaleWidth      =   7035
  14.    ShowInTaskbar   =   0   'False
  15.    Begin VB.TextBox Text1 
  16.       Height          =   3375
  17.       Left            =   360
  18.       MultiLine       =   -1  'True
  19.       ScrollBars      =   2  'Vertical
  20.       TabIndex        =   1
  21.       Text            =   "frmHelp.frx":0000
  22.       Top             =   240
  23.       Width           =   6495
  24.    End
  25.    Begin VB.CommandButton OKButton 
  26.       Cancel          =   -1  'True
  27.       Caption         =   "OK"
  28.       Default         =   -1  'True
  29.       Height          =   375
  30.       Left            =   2880
  31.       TabIndex        =   0
  32.       Top             =   3960
  33.       Width           =   1215
  34.    End
  35. Attribute VB_Name = "frmHelp"
  36. Attribute VB_GlobalNameSpace = False
  37. Attribute VB_Creatable = False
  38. Attribute VB_PredeclaredId = True
  39. Attribute VB_Exposed = False
  40. Option Explicit
  41. Private Sub OKButton_Click()
  42. Me.Hide
  43. End Sub
  44.