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-TabKey / Form1.vb < prev   
Text File  |  2001-06-24  |  4KB  |  109 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 TextBox1 As System.Windows.Forms.TextBox
  26.     Friend WithEvents Label1 As System.Windows.Forms.Label
  27.     Friend WithEvents Label2 As System.Windows.Forms.Label
  28.     Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
  29.     Friend WithEvents Label3 As System.Windows.Forms.Label
  30.     Friend WithEvents TextBox3 As System.Windows.Forms.TextBox
  31.  
  32.     'Required by the Windows Form Designer
  33.     Private components As System.ComponentModel.Container
  34.  
  35.     'NOTE: The following procedure is required by the Windows Form Designer
  36.     'It can be modified using the Windows Form Designer.  
  37.     'Do not modify it using the code editor.
  38.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  39.         Me.TextBox1 = New System.Windows.Forms.TextBox()
  40.         Me.Label1 = New System.Windows.Forms.Label()
  41.         Me.Label2 = New System.Windows.Forms.Label()
  42.         Me.TextBox2 = New System.Windows.Forms.TextBox()
  43.         Me.Label3 = New System.Windows.Forms.Label()
  44.         Me.TextBox3 = New System.Windows.Forms.TextBox()
  45.         Me.SuspendLayout()
  46.         '
  47.         'TextBox1
  48.         '
  49.         Me.TextBox1.Location = New System.Drawing.Point(88, 32)
  50.         Me.TextBox1.Name = "TextBox1"
  51.         Me.TextBox1.Size = New System.Drawing.Size(184, 20)
  52.         Me.TextBox1.TabIndex = 1
  53.         Me.TextBox1.Text = "TextBox1"
  54.         '
  55.         'Label1
  56.         '
  57.         Me.Label1.Location = New System.Drawing.Point(8, 32)
  58.         Me.Label1.Name = "Label1"
  59.         Me.Label1.Size = New System.Drawing.Size(72, 16)
  60.         Me.Label1.TabIndex = 0
  61.         Me.Label1.Text = "Label:"
  62.         '
  63.         'Label2
  64.         '
  65.         Me.Label2.Location = New System.Drawing.Point(8, 56)
  66.         Me.Label2.Name = "Label2"
  67.         Me.Label2.Size = New System.Drawing.Size(72, 16)
  68.         Me.Label2.TabIndex = 2
  69.         Me.Label2.Text = "Label:"
  70.         '
  71.         'TextBox2
  72.         '
  73.         Me.TextBox2.Location = New System.Drawing.Point(88, 56)
  74.         Me.TextBox2.Name = "TextBox2"
  75.         Me.TextBox2.Size = New System.Drawing.Size(184, 20)
  76.         Me.TextBox2.TabIndex = 3
  77.         Me.TextBox2.Text = "TextBox2"
  78.         '
  79.         'Label3
  80.         '
  81.         Me.Label3.Location = New System.Drawing.Point(8, 80)
  82.         Me.Label3.Name = "Label3"
  83.         Me.Label3.Size = New System.Drawing.Size(72, 16)
  84.         Me.Label3.TabIndex = 4
  85.         Me.Label3.Text = "Label:"
  86.         '
  87.         'TextBox3
  88.         '
  89.         Me.TextBox3.Location = New System.Drawing.Point(88, 80)
  90.         Me.TextBox3.Name = "TextBox3"
  91.         Me.TextBox3.Size = New System.Drawing.Size(184, 20)
  92.         Me.TextBox3.TabIndex = 5
  93.         Me.TextBox3.Text = "TextBox3"
  94.         '
  95.         'Form1
  96.         '
  97.         Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
  98.         Me.ClientSize = New System.Drawing.Size(292, 165)
  99.         Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Label3, Me.TextBox3, Me.Label2, Me.TextBox2, Me.Label1, Me.TextBox1})
  100.         Me.Name = "Form1"
  101.         Me.Text = "Form1"
  102.         Me.ResumeLayout(False)
  103.  
  104.     End Sub
  105.  
  106. #End Region
  107.  
  108. End Class
  109.