home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic .NET - Read Less - Learn More / Visual_Basic.NET_Read_Less_Learn_More_Richard_Bowman_Visual_2002.iso / Resources / Code / Ch3-FrameControls / Form1.vb < prev    next >
Text File  |  2001-09-16  |  5KB  |  137 lines

  1. Public Class Form1
  2.     Inherits System.Windows.Forms.Form
  3.  
  4. #Region " Windows Form Designer generated code "
  5.  
  6.     Public Sub New()
  7.         MyBase.New()
  8.  
  9.         'This call is required by the Windows Form Designer.
  10.         InitializeComponent()
  11.  
  12.         'Add any initialization after the InitializeComponent() call
  13.  
  14.     End Sub
  15.  
  16.     'Form overrides dispose to clean up the component list.
  17.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  18.         If disposing Then
  19.             If Not (components Is Nothing) Then
  20.                 components.Dispose()
  21.             End If
  22.         End If
  23.         MyBase.Dispose(disposing)
  24.     End Sub
  25.     Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
  26.     Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
  27.     Friend WithEvents RadioButton1 As System.Windows.Forms.RadioButton
  28.     Friend WithEvents RadioButton2 As System.Windows.Forms.RadioButton
  29.     Friend WithEvents RadioButton3 As System.Windows.Forms.RadioButton
  30.     Friend WithEvents RadioButton4 As System.Windows.Forms.RadioButton
  31.     Friend WithEvents RadioButton5 As System.Windows.Forms.RadioButton
  32.     Friend WithEvents RadioButton6 As System.Windows.Forms.RadioButton
  33.  
  34.     'Required by the Windows Form Designer
  35.     Private components As System.ComponentModel.Container
  36.  
  37.     'NOTE: The following procedure is required by the Windows Form Designer
  38.     'It can be modified using the Windows Form Designer.  
  39.     'Do not modify it using the code editor.
  40.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  41.         Me.GroupBox1 = New System.Windows.Forms.GroupBox()
  42.         Me.GroupBox2 = New System.Windows.Forms.GroupBox()
  43.         Me.RadioButton1 = New System.Windows.Forms.RadioButton()
  44.         Me.RadioButton2 = New System.Windows.Forms.RadioButton()
  45.         Me.RadioButton3 = New System.Windows.Forms.RadioButton()
  46.         Me.RadioButton4 = New System.Windows.Forms.RadioButton()
  47.         Me.RadioButton5 = New System.Windows.Forms.RadioButton()
  48.         Me.RadioButton6 = New System.Windows.Forms.RadioButton()
  49.         Me.GroupBox1.SuspendLayout()
  50.         Me.GroupBox2.SuspendLayout()
  51.         Me.SuspendLayout()
  52.         '
  53.         'GroupBox1
  54.         '
  55.         Me.GroupBox1.Controls.AddRange(New System.Windows.Forms.Control() {Me.RadioButton3, Me.RadioButton2, Me.RadioButton1})
  56.         Me.GroupBox1.Location = New System.Drawing.Point(56, 24)
  57.         Me.GroupBox1.Name = "GroupBox1"
  58.         Me.GroupBox1.Size = New System.Drawing.Size(184, 112)
  59.         Me.GroupBox1.TabIndex = 0
  60.         Me.GroupBox1.TabStop = False
  61.         Me.GroupBox1.Text = "My Frame"
  62.         '
  63.         'GroupBox2
  64.         '
  65.         Me.GroupBox2.Controls.AddRange(New System.Windows.Forms.Control() {Me.RadioButton6, Me.RadioButton5, Me.RadioButton4})
  66.         Me.GroupBox2.Location = New System.Drawing.Point(56, 144)
  67.         Me.GroupBox2.Name = "GroupBox2"
  68.         Me.GroupBox2.Size = New System.Drawing.Size(184, 112)
  69.         Me.GroupBox2.TabIndex = 1
  70.         Me.GroupBox2.TabStop = False
  71.         Me.GroupBox2.Text = "My second group"
  72.         '
  73.         'RadioButton1
  74.         '
  75.         Me.RadioButton1.Location = New System.Drawing.Point(16, 32)
  76.         Me.RadioButton1.Name = "RadioButton1"
  77.         Me.RadioButton1.Size = New System.Drawing.Size(152, 16)
  78.         Me.RadioButton1.TabIndex = 0
  79.         Me.RadioButton1.Text = "RadioButton1"
  80.         '
  81.         'RadioButton2
  82.         '
  83.         Me.RadioButton2.Location = New System.Drawing.Point(16, 56)
  84.         Me.RadioButton2.Name = "RadioButton2"
  85.         Me.RadioButton2.Size = New System.Drawing.Size(152, 16)
  86.         Me.RadioButton2.TabIndex = 1
  87.         Me.RadioButton2.Text = "RadioButton2"
  88.         '
  89.         'RadioButton3
  90.         '
  91.         Me.RadioButton3.Location = New System.Drawing.Point(16, 80)
  92.         Me.RadioButton3.Name = "RadioButton3"
  93.         Me.RadioButton3.Size = New System.Drawing.Size(152, 16)
  94.         Me.RadioButton3.TabIndex = 1
  95.         Me.RadioButton3.Text = "RadioButton3"
  96.         '
  97.         'RadioButton4
  98.         '
  99.         Me.RadioButton4.Location = New System.Drawing.Point(16, 32)
  100.         Me.RadioButton4.Name = "RadioButton4"
  101.         Me.RadioButton4.Size = New System.Drawing.Size(152, 16)
  102.         Me.RadioButton4.TabIndex = 1
  103.         Me.RadioButton4.Text = "RadioButton4"
  104.         '
  105.         'RadioButton5
  106.         '
  107.         Me.RadioButton5.Location = New System.Drawing.Point(16, 56)
  108.         Me.RadioButton5.Name = "RadioButton5"
  109.         Me.RadioButton5.Size = New System.Drawing.Size(152, 16)
  110.         Me.RadioButton5.TabIndex = 1
  111.         Me.RadioButton5.Text = "RadioButton5"
  112.         '
  113.         'RadioButton6
  114.         '
  115.         Me.RadioButton6.Location = New System.Drawing.Point(16, 80)
  116.         Me.RadioButton6.Name = "RadioButton6"
  117.         Me.RadioButton6.Size = New System.Drawing.Size(152, 16)
  118.         Me.RadioButton6.TabIndex = 1
  119.         Me.RadioButton6.Text = "RadioButton6"
  120.         '
  121.         'Form1
  122.         '
  123.         Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
  124.         Me.ClientSize = New System.Drawing.Size(292, 273)
  125.         Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.GroupBox2, Me.GroupBox1})
  126.         Me.Name = "Form1"
  127.         Me.Text = "Form1"
  128.         Me.GroupBox1.ResumeLayout(False)
  129.         Me.GroupBox2.ResumeLayout(False)
  130.         Me.ResumeLayout(False)
  131.  
  132.     End Sub
  133.  
  134. #End Region
  135.  
  136. End Class
  137.