home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / ch_code / ch01 / example3 / exampl3a.frm (.txt) next >
Encoding:
Visual Basic Form  |  1998-07-13  |  3.6 KB  |  116 lines

  1. VERSION 5.00
  2. Begin VB.Form Example3A 
  3.    Caption         =   "Grouped Option Buttons"
  4.    ClientHeight    =   2430
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4710
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   2430
  10.    ScaleWidth      =   4710
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.Frame Frame2 
  13.       Caption         =   "Select a Browser"
  14.       BeginProperty Font 
  15.          Name            =   "MS Sans Serif"
  16.          Size            =   8.25
  17.          Charset         =   0
  18.          Weight          =   700
  19.          Underline       =   0   'False
  20.          Italic          =   0   'False
  21.          Strikethrough   =   0   'False
  22.       EndProperty
  23.       Height          =   1950
  24.       Left            =   2475
  25.       TabIndex        =   5
  26.       Top             =   300
  27.       Width           =   2085
  28.       Begin VB.OptionButton Option5 
  29.          Caption         =   "Internet Explorer 2.0"
  30.          Height          =   270
  31.          Left            =   120
  32.          TabIndex        =   9
  33.          Top             =   285
  34.          Width           =   1815
  35.       End
  36.       Begin VB.OptionButton Option6 
  37.          Caption         =   "Internet Explorer 3.0"
  38.          Height          =   240
  39.          Left            =   120
  40.          TabIndex        =   8
  41.          Top             =   690
  42.          Width           =   1890
  43.       End
  44.       Begin VB.OptionButton Option7 
  45.          Caption         =   "NetScape Gold"
  46.          Height          =   345
  47.          Left            =   120
  48.          TabIndex        =   7
  49.          Top             =   1050
  50.          Width           =   1890
  51.       End
  52.       Begin VB.OptionButton Option8 
  53.          Caption         =   "Other"
  54.          Height          =   270
  55.          Left            =   120
  56.          TabIndex        =   6
  57.          Top             =   1485
  58.          Width           =   1215
  59.       End
  60.    End
  61.    Begin VB.Frame Frame1 
  62.       Caption         =   "Select a Language"
  63.       BeginProperty Font 
  64.          Name            =   "MS Sans Serif"
  65.          Size            =   8.25
  66.          Charset         =   0
  67.          Weight          =   700
  68.          Underline       =   0   'False
  69.          Italic          =   0   'False
  70.          Strikethrough   =   0   'False
  71.       EndProperty
  72.       Height          =   1950
  73.       Left            =   195
  74.       TabIndex        =   0
  75.       Top             =   285
  76.       Width           =   2055
  77.       Begin VB.OptionButton Option4 
  78.          Caption         =   "Other"
  79.          Height          =   240
  80.          Left            =   165
  81.          TabIndex        =   4
  82.          Top             =   1485
  83.          Width           =   1665
  84.       End
  85.       Begin VB.OptionButton Option3 
  86.          Caption         =   "Visual C++"
  87.          Height          =   300
  88.          Left            =   165
  89.          TabIndex        =   3
  90.          Top             =   1050
  91.          Width           =   1470
  92.       End
  93.       Begin VB.OptionButton Option2 
  94.          Caption         =   "Java"
  95.          Height          =   270
  96.          Left            =   165
  97.          TabIndex        =   2
  98.          Top             =   660
  99.          Width           =   1695
  100.       End
  101.       Begin VB.OptionButton Option1 
  102.          Caption         =   "Visual Basic"
  103.          Height          =   240
  104.          Left            =   165
  105.          TabIndex        =   1
  106.          Top             =   345
  107.          Width           =   1590
  108.       End
  109.    End
  110. Attribute VB_Name = "Example3A"
  111. Attribute VB_GlobalNameSpace = False
  112. Attribute VB_Creatable = False
  113. Attribute VB_PredeclaredId = True
  114. Attribute VB_Exposed = False
  115. Option Explicit
  116.