home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD136701112001.psc / frmHelp.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-01-10  |  1.2 KB  |  38 lines

  1. VERSION 5.00
  2. Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
  3. Begin VB.Form frmHelp 
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Help"
  6.    ClientHeight    =   4485
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   8205
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   4485
  14.    ScaleWidth      =   8205
  15.    StartUpPosition =   3  'Windows Default
  16.    Begin RichTextLib.RichTextBox RichTextBox1 
  17.       Height          =   4395
  18.       Left            =   45
  19.       TabIndex        =   0
  20.       Top             =   45
  21.       Width           =   8085
  22.       _ExtentX        =   14261
  23.       _ExtentY        =   7752
  24.       _Version        =   393217
  25.       Enabled         =   -1  'True
  26.       ScrollBars      =   3
  27.       TextRTF         =   $"frmHelp.frx":0000
  28.    End
  29. Attribute VB_Name = "frmHelp"
  30. Attribute VB_GlobalNameSpace = False
  31. Attribute VB_Creatable = False
  32. Attribute VB_PredeclaredId = True
  33. Attribute VB_Exposed = False
  34. Option Explicit
  35. Private Sub Form_Load()
  36.     RichTextBox1.LoadFile App.Path + "\To use.rtf"
  37. End Sub
  38.