home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / tool / design / tbar / form1.frm (.txt) next >
Encoding:
Visual Basic Form  |  1995-02-27  |  1.5 KB  |  43 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    Caption         =   "Information"
  4.    ClientHeight    =   1845
  5.    ClientLeft      =   270
  6.    ClientTop       =   2295
  7.    ClientWidth     =   6960
  8.    Height          =   2370
  9.    Left            =   210
  10.    LinkTopic       =   "Form1"
  11.    MDIChild        =   -1  'True
  12.    ScaleHeight     =   1845
  13.    ScaleWidth      =   6960
  14.    Top             =   1830
  15.    Width           =   7080
  16.    Begin Label Label3 
  17.       Caption         =   "The final three buttons consist of a toggle group.  Pressing one button in the group causes all of the other buttons to become unpressed."
  18.       Height          =   396
  19.       Left            =   96
  20.       TabIndex        =   2
  21.       Top             =   1248
  22.       Width           =   6780
  23.    End
  24.    Begin Label Label2 
  25.       Caption         =   "Button number 6 (on a 0 index scale) is a solitary toggle button.  Toggle this button on and off."
  26.       Height          =   348
  27.       Left            =   96
  28.       TabIndex        =   1
  29.       Top             =   768
  30.       Width           =   6780
  31.    End
  32.    Begin Label Label1 
  33.       Caption         =   "The first six buttons are regular point and click, some of which are disabled or enabled by code in the Load method of the MDI Form.  The buttons numbered 3-5 are disabled by default in the properties box."
  34.       Height          =   588
  35.       Left            =   96
  36.       TabIndex        =   0
  37.       Top             =   48
  38.       Width           =   6684
  39.    End
  40. Sub Form_Load ()
  41.   Form1.Height = 2052
  42. End Sub
  43.