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 / Ch2-ResizeCtls / Form1.vb < prev   
Text File  |  2001-06-24  |  4KB  |  94 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 Button1 As System.Windows.Forms.Button
  26.     Friend WithEvents Button2 As System.Windows.Forms.Button
  27.     Friend WithEvents Button3 As System.Windows.Forms.Button
  28.     Friend WithEvents RichTextBox1 As System.Windows.Forms.RichTextBox
  29.  
  30.     'Required by the Windows Form Designer
  31.     Private components As System.ComponentModel.Container
  32.  
  33.     'NOTE: The following procedure is required by the Windows Form Designer
  34.     'It can be modified using the Windows Form Designer.  
  35.     'Do not modify it using the code editor.
  36.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  37.         Me.Button1 = New System.Windows.Forms.Button()
  38.         Me.Button2 = New System.Windows.Forms.Button()
  39.         Me.Button3 = New System.Windows.Forms.Button()
  40.         Me.RichTextBox1 = New System.Windows.Forms.RichTextBox()
  41.         Me.SuspendLayout()
  42.         '
  43.         'Button1
  44.         '
  45.         Me.Button1.Dock = System.Windows.Forms.DockStyle.Top
  46.         Me.Button1.Name = "Button1"
  47.         Me.Button1.Size = New System.Drawing.Size(292, 40)
  48.         Me.Button1.TabIndex = 0
  49.         Me.Button1.Text = "Button1"
  50.         '
  51.         'Button2
  52.         '
  53.         Me.Button2.Location = New System.Drawing.Point(8, 56)
  54.         Me.Button2.Name = "Button2"
  55.         Me.Button2.Size = New System.Drawing.Size(80, 40)
  56.         Me.Button2.TabIndex = 1
  57.         Me.Button2.Text = "Button2"
  58.         '
  59.         'Button3
  60.         '
  61.         Me.Button3.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  62.                     Or System.Windows.Forms.AnchorStyles.Right)
  63.         Me.Button3.Location = New System.Drawing.Point(96, 232)
  64.         Me.Button3.Name = "Button3"
  65.         Me.Button3.Size = New System.Drawing.Size(80, 32)
  66.         Me.Button3.TabIndex = 2
  67.         Me.Button3.Text = "Button3"
  68.         '
  69.         'RichTextBox1
  70.         '
  71.         Me.RichTextBox1.Anchor = (((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  72.                     Or System.Windows.Forms.AnchorStyles.Left) _
  73.                     Or System.Windows.Forms.AnchorStyles.Right)
  74.         Me.RichTextBox1.Location = New System.Drawing.Point(96, 64)
  75.         Me.RichTextBox1.Name = "RichTextBox1"
  76.         Me.RichTextBox1.Size = New System.Drawing.Size(192, 160)
  77.         Me.RichTextBox1.TabIndex = 3
  78.         Me.RichTextBox1.Text = "RichTextBox1"
  79.         '
  80.         'Form1
  81.         '
  82.         Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
  83.         Me.ClientSize = New System.Drawing.Size(292, 273)
  84.         Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.RichTextBox1, Me.Button3, Me.Button2, Me.Button1})
  85.         Me.Name = "Form1"
  86.         Me.Text = "Form1"
  87.         Me.ResumeLayout(False)
  88.  
  89.     End Sub
  90.  
  91. #End Region
  92.  
  93. End Class
  94.