home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / wrnsr094 / help_box.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-08  |  972 b   |  35 lines

  1. VERSION 2.00
  2. Begin Form helpbox 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "Help -- WRN.HLP"
  5.    ClientHeight    =   5820
  6.    ClientLeft      =   1095
  7.    ClientTop       =   1485
  8.    ClientWidth     =   7365
  9.    Height          =   6225
  10.    Left            =   1035
  11.    LinkMode        =   1  'Source
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   5820
  16.    ScaleWidth      =   7365
  17.    Top             =   1140
  18.    Width           =   7485
  19.    Begin TextBox Text1 
  20.       Height          =   5415
  21.       Left            =   360
  22.       MultiLine       =   -1  'True
  23.       ScrollBars      =   3  'Both
  24.       TabIndex        =   0
  25.       Top             =   120
  26.       Width           =   6855
  27.    End
  28. Sub Form_Load ()
  29.    temp$ = load_file("wrn.hlp")
  30.    text1.text = temp$
  31. End Sub
  32. Sub Form_Unload (Cancel As Integer)
  33.    wrn_form.enabled = True
  34. End Sub
  35.