home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / favori / favorit2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-08  |  2.2 KB  |  62 lines

  1. VERSION 2.00
  2. Begin Form Form2 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "HELP SCREEN"
  5.    ClientHeight    =   3270
  6.    ClientLeft      =   3300
  7.    ClientTop       =   1710
  8.    ClientWidth     =   5025
  9.    ControlBox      =   0   'False
  10.    Height          =   3675
  11.    Left            =   3240
  12.    LinkMode        =   1  'Source
  13.    LinkTopic       =   "Form2"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   3270
  17.    ScaleWidth      =   5025
  18.    Top             =   1365
  19.    Visible         =   0   'False
  20.    Width           =   5145
  21.    Begin CommandButton HelpButton 
  22.       Caption         =   "OK"
  23.       Height          =   495
  24.       Left            =   4080
  25.       TabIndex        =   0
  26.       Top             =   240
  27.       Width           =   615
  28.    End
  29.    Begin Label Label3 
  30.       Caption         =   "Windows Program Manager to run your chosen program (when you double-click on an item in the list), so be sure that the variables (program name, suffix, and command line) are compatible with Program Manager."
  31.       Height          =   975
  32.       Left            =   360
  33.       TabIndex        =   3
  34.       Top             =   2160
  35.       Width           =   4575
  36.    End
  37.    Begin Label Label2 
  38.       Caption         =   "This is my first attempt at a Visual Basic program and as program lauchers go, is probably not too dramatic.                                                 It is important to note that this program will actually pass command information to the "
  39.       Height          =   1455
  40.       Left            =   360
  41.       TabIndex        =   2
  42.       Top             =   1200
  43.       Width           =   4455
  44.    End
  45.    Begin Label Label1 
  46.       BorderStyle     =   1  'Fixed Single
  47.       Caption         =   "I haven't chosen to pay the $50.00 for the VB Help Screen Builder Kit so you'll have to put up with this."
  48.       Height          =   855
  49.       Left            =   360
  50.       TabIndex        =   1
  51.       Top             =   120
  52.       Width           =   3255
  53.    End
  54. 'user clicks "OK" to leave help screen
  55. Sub HelpButton_Click ()
  56.  FORM2.VISIBLE = False    'unload it from memory
  57.  Unload FORM2
  58. End Sub
  59. Sub HelpButton_LostFocus ()
  60.  FORM2.VISIBLE = False
  61. End Sub
  62.