<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net%2FGUI%2FLayout</id>
		<title>VB.Net/GUI/Layout - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net%2FGUI%2FLayout"/>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net/GUI/Layout&amp;action=history"/>
		<updated>2026-04-06T00:11:31Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net/GUI/Layout&amp;diff=446&amp;oldid=prev</id>
		<title> в 16:40, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net/GUI/Layout&amp;diff=446&amp;oldid=prev"/>
				<updated>2010-05-26T16:40:06Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 16:40, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net/GUI/Layout&amp;diff=447&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net/GUI/Layout&amp;diff=447&amp;oldid=prev"/>
				<updated>2010-05-26T12:43:05Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Get Frame Client Area Rectangle and layout Components==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;&lt;br /&gt;
Imports System&lt;br /&gt;
Imports System.ruponentModel&lt;br /&gt;
Imports System.Windows.Forms&lt;br /&gt;
Imports System.Data&lt;br /&gt;
Imports System.Configuration&lt;br /&gt;
Imports System.Drawing&lt;br /&gt;
Imports System.Drawing.Drawing2D&lt;br /&gt;
Imports System.Drawing.Text&lt;br /&gt;
Imports System.Globalization&lt;br /&gt;
Imports System.Text&lt;br /&gt;
Imports System.Collections&lt;br /&gt;
Public Class MainClass&lt;br /&gt;
    Shared Sub Main()&lt;br /&gt;
        Dim myform As Form = New Form1()&lt;br /&gt;
        Application.Run(myform)&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&lt;br /&gt;
Public Class Form1&lt;br /&gt;
    Private Sub Form1_Load(ByVal sender As Object, _&lt;br /&gt;
    ByVal e As System.EventArgs) Handles Me.Load&lt;br /&gt;
        ArrangeTextBoxes()&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private Sub Form1_Resize(ByVal sender As Object, _&lt;br /&gt;
    ByVal e As System.EventArgs) Handles Me.Resize&lt;br /&gt;
        ArrangeTextBoxes()&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private Sub ArrangeTextBoxes()&lt;br /&gt;
        Dim wid As Integer = Me.ClientRectangle.Width&lt;br /&gt;
        Dim hgt1 As Integer = Me.ClientRectangle.Height \ 2&lt;br /&gt;
        Dim hgt2 As Integer = Me.ClientRectangle.Height - hgt1&lt;br /&gt;
        TextBox1.SetBounds(0, 0, wid, hgt1)&lt;br /&gt;
        TextBox2.SetBounds(0, hgt1, wid, hgt2)&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Global.Microsoft.VisualBasic.rupilerServices.DesignerGenerated()&amp;gt; _&lt;br /&gt;
Partial Public Class Form1&lt;br /&gt;
    Inherits System.Windows.Forms.Form&lt;br /&gt;
    &amp;quot;Form overrides dispose to clean up the component list.&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerNonUserCode()&amp;gt; _&lt;br /&gt;
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)&lt;br /&gt;
        If disposing AndAlso components IsNot Nothing Then&lt;br /&gt;
            components.Dispose()&lt;br /&gt;
        End If&lt;br /&gt;
        MyBase.Dispose(disposing)&lt;br /&gt;
    End Sub&lt;br /&gt;
    &amp;quot;Required by the Windows Form Designer&lt;br /&gt;
    Private components As System.ruponentModel.IContainer&lt;br /&gt;
    &amp;quot;NOTE: The following procedure is required by the Windows Form Designer&lt;br /&gt;
    &amp;quot;It can be modified using the Windows Form Designer.  &lt;br /&gt;
    &amp;quot;Do not modify it using the code editor.&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; _&lt;br /&gt;
    Private Sub InitializeComponent()&lt;br /&gt;
        Me.TextBox1 = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.TextBox2 = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TextBox1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TextBox1.Location = New System.Drawing.Point(32, 40)&lt;br /&gt;
        Me.TextBox1.Multiline = True&lt;br /&gt;
        Me.TextBox1.Name = &amp;quot;TextBox1&amp;quot;&lt;br /&gt;
        Me.TextBox1.Size = New System.Drawing.Size(72, 48)&lt;br /&gt;
        Me.TextBox1.TabIndex = 0&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TextBox2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TextBox2.Location = New System.Drawing.Point(152, 40)&lt;br /&gt;
        Me.TextBox2.Multiline = True&lt;br /&gt;
        Me.TextBox2.Name = &amp;quot;TextBox2&amp;quot;&lt;br /&gt;
        Me.TextBox2.Size = New System.Drawing.Size(72, 48)&lt;br /&gt;
        Me.TextBox2.TabIndex = 1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Form1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)&lt;br /&gt;
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font&lt;br /&gt;
        Me.ClientSize = New System.Drawing.Size(292, 273)&lt;br /&gt;
        Me.Controls.Add(Me.TextBox2)&lt;br /&gt;
        Me.Controls.Add(Me.TextBox1)&lt;br /&gt;
        Me.Name = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        Me.Text = &amp;quot;Divide Form&amp;quot;&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
        Me.PerformLayout()&lt;br /&gt;
    End Sub&lt;br /&gt;
    Friend WithEvents TextBox1 As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents TextBox2 As System.Windows.Forms.TextBox&lt;br /&gt;
End Class&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Layout component your self==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;&lt;br /&gt;
Imports System&lt;br /&gt;
Imports System.Drawing&lt;br /&gt;
Imports System.Collections&lt;br /&gt;
Imports System.ruponentModel&lt;br /&gt;
Imports System.Windows.Forms&lt;br /&gt;
Imports System.Data&lt;br /&gt;
Imports System.Configuration&lt;br /&gt;
Imports System.Resources&lt;br /&gt;
Public Class GridForm&lt;br /&gt;
    Inherits System.Windows.Forms.Form&lt;br /&gt;
#Region &amp;quot; Windows Form Designer generated code &amp;quot;&lt;br /&gt;
    Public Sub New()&lt;br /&gt;
        MyBase.New()&lt;br /&gt;
        &amp;quot;This call is required by the Windows Form Designer.&lt;br /&gt;
        InitializeComponent()&lt;br /&gt;
        &amp;quot;Add any initialization after the InitializeComponent() call&lt;br /&gt;
    End Sub&lt;br /&gt;
    &amp;quot;Form overrides dispose to clean up the component list.&lt;br /&gt;
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)&lt;br /&gt;
        If disposing Then&lt;br /&gt;
            If Not (components Is Nothing) Then&lt;br /&gt;
                components.Dispose()&lt;br /&gt;
            End If&lt;br /&gt;
        End If&lt;br /&gt;
        MyBase.Dispose(disposing)&lt;br /&gt;
    End Sub&lt;br /&gt;
    &amp;quot;Required by the Windows Form Designer&lt;br /&gt;
    Private components As System.ruponentModel.IContainer&lt;br /&gt;
    &amp;quot;NOTE: The following procedure is required by the Windows Form Designer&lt;br /&gt;
    &amp;quot;It can be modified using the Windows Form Designer.  &lt;br /&gt;
    &amp;quot;Do not modify it using the code editor.&lt;br /&gt;
    Friend WithEvents button1 As System.Windows.Forms.Button&lt;br /&gt;
    Friend WithEvents button2 As System.Windows.Forms.Button&lt;br /&gt;
    Friend WithEvents button3 As System.Windows.Forms.Button&lt;br /&gt;
    Friend WithEvents button4 As System.Windows.Forms.Button&lt;br /&gt;
    Friend WithEvents button5 As System.Windows.Forms.Button&lt;br /&gt;
    Friend WithEvents button6 As System.Windows.Forms.Button&lt;br /&gt;
    Friend WithEvents button7 As System.Windows.Forms.Button&lt;br /&gt;
    Friend WithEvents button8 As System.Windows.Forms.Button&lt;br /&gt;
    Friend WithEvents button9 As System.Windows.Forms.Button&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; Private Sub InitializeComponent()&lt;br /&gt;
        Me.button1 = New System.Windows.Forms.Button()&lt;br /&gt;
        Me.button2 = New System.Windows.Forms.Button()&lt;br /&gt;
        Me.button3 = New System.Windows.Forms.Button()&lt;br /&gt;
        Me.button4 = New System.Windows.Forms.Button()&lt;br /&gt;
        Me.button5 = New System.Windows.Forms.Button()&lt;br /&gt;
        Me.button6 = New System.Windows.Forms.Button()&lt;br /&gt;
        Me.button7 = New System.Windows.Forms.Button()&lt;br /&gt;
        Me.button8 = New System.Windows.Forms.Button()&lt;br /&gt;
        Me.button9 = New System.Windows.Forms.Button()&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;button1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.button1.Location = New System.Drawing.Point(8, 8)&lt;br /&gt;
        Me.button1.Name = &amp;quot;button1&amp;quot;&lt;br /&gt;
        Me.button1.Size = New System.Drawing.Size(75, 75)&lt;br /&gt;
        Me.button1.TabIndex = 7&lt;br /&gt;
        Me.button1.Text = &amp;quot;1&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;button2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.button2.Location = New System.Drawing.Point(88, 8)&lt;br /&gt;
        Me.button2.Name = &amp;quot;button2&amp;quot;&lt;br /&gt;
        Me.button2.Size = New System.Drawing.Size(75, 75)&lt;br /&gt;
        Me.button2.TabIndex = 6&lt;br /&gt;
        Me.button2.Text = &amp;quot;2&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;button3&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.button3.Location = New System.Drawing.Point(168, 8)&lt;br /&gt;
        Me.button3.Name = &amp;quot;button3&amp;quot;&lt;br /&gt;
        Me.button3.Size = New System.Drawing.Size(75, 75)&lt;br /&gt;
        Me.button3.TabIndex = 9&lt;br /&gt;
        Me.button3.Text = &amp;quot;3&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;button4&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.button4.Location = New System.Drawing.Point(8, 88)&lt;br /&gt;
        Me.button4.Name = &amp;quot;button4&amp;quot;&lt;br /&gt;
        Me.button4.Size = New System.Drawing.Size(75, 75)&lt;br /&gt;
        Me.button4.TabIndex = 8&lt;br /&gt;
        Me.button4.Text = &amp;quot;4&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;button5&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.button5.Location = New System.Drawing.Point(88, 88)&lt;br /&gt;
        Me.button5.Name = &amp;quot;button5&amp;quot;&lt;br /&gt;
        Me.button5.Size = New System.Drawing.Size(75, 75)&lt;br /&gt;
        Me.button5.TabIndex = 5&lt;br /&gt;
        Me.button5.Text = &amp;quot;5&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;button6&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.button6.Location = New System.Drawing.Point(168, 88)&lt;br /&gt;
        Me.button6.Name = &amp;quot;button6&amp;quot;&lt;br /&gt;
        Me.button6.Size = New System.Drawing.Size(75, 75)&lt;br /&gt;
        Me.button6.TabIndex = 2&lt;br /&gt;
        Me.button6.Text = &amp;quot;6&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;button7&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.button7.Location = New System.Drawing.Point(8, 168)&lt;br /&gt;
        Me.button7.Name = &amp;quot;button7&amp;quot;&lt;br /&gt;
        Me.button7.Size = New System.Drawing.Size(75, 75)&lt;br /&gt;
        Me.button7.TabIndex = 1&lt;br /&gt;
        Me.button7.Text = &amp;quot;7&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;button8&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.button8.Location = New System.Drawing.Point(88, 168)&lt;br /&gt;
        Me.button8.Name = &amp;quot;button8&amp;quot;&lt;br /&gt;
        Me.button8.Size = New System.Drawing.Size(75, 75)&lt;br /&gt;
        Me.button8.TabIndex = 4&lt;br /&gt;
        Me.button8.Text = &amp;quot;8&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;button9&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.button9.Location = New System.Drawing.Point(168, 168)&lt;br /&gt;
        Me.button9.Name = &amp;quot;button9&amp;quot;&lt;br /&gt;
        Me.button9.Size = New System.Drawing.Size(75, 75)&lt;br /&gt;
        Me.button9.TabIndex = 3&lt;br /&gt;
        Me.button9.Text = &amp;quot;9&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Form1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)&lt;br /&gt;
        Me.ClientSize = New System.Drawing.Size(248, 246)&lt;br /&gt;
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.button1, Me.button2, Me.button3, Me.button4, Me.button5, Me.button6, Me.button7, Me.button8, Me.button9})&lt;br /&gt;
        Me.Name = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        Me.Text = &amp;quot;Grid Layout Example&amp;quot;&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
    End Sub&lt;br /&gt;
#End Region&lt;br /&gt;
    Private Sub GridForm_Layout(ByVal sender As Object, ByVal e As System.Windows.Forms.LayoutEventArgs) Handles MyBase.Layout&lt;br /&gt;
        Dim buttons As Button() = New Button() {button1, button2, button3, button4, button5, button6, button7, button8, button9}&lt;br /&gt;
        Dim cx As Integer = ClientRectangle.Width / 3&lt;br /&gt;
        Dim cy As Integer = ClientRectangle.Height / 3&lt;br /&gt;
        Dim row As Integer = 0&lt;br /&gt;
        Do While row &amp;lt; 3&lt;br /&gt;
            Dim col As Integer = 0&lt;br /&gt;
            Do While col &amp;lt; 3&lt;br /&gt;
                Dim b As Button = buttons(col * 3 + row)&lt;br /&gt;
                b.SetBounds(cx * row, cy * col, cx, cy)&lt;br /&gt;
                col = col + 1&lt;br /&gt;
            Loop&lt;br /&gt;
            row = row + 1&lt;br /&gt;
        Loop&lt;br /&gt;
        SetClientSizeCore(cx * 3, cy * 3)&lt;br /&gt;
    End Sub&lt;br /&gt;
    Shared Sub Main()&lt;br /&gt;
        Dim myform As Form = New  GridForm()&lt;br /&gt;
        Application.Run(myform)&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Table Layout==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;&lt;br /&gt;
Imports System&lt;br /&gt;
Imports System.Data&lt;br /&gt;
Imports System.Windows.Forms&lt;br /&gt;
Imports System.Drawing&lt;br /&gt;
Imports System.Data.SqlClient&lt;br /&gt;
public class MainClass&lt;br /&gt;
   Shared Sub Main()&lt;br /&gt;
       Dim form1 As Form = New Form1&lt;br /&gt;
       Application.Run(form1)&lt;br /&gt;
   End Sub&lt;br /&gt;
End Class&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Global.Microsoft.VisualBasic.rupilerServices.DesignerGenerated()&amp;gt; _&lt;br /&gt;
Partial Public Class Form1&lt;br /&gt;
    Inherits System.Windows.Forms.Form&lt;br /&gt;
    &amp;quot;Form overrides dispose to clean up the component list.&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerNonUserCode()&amp;gt; _&lt;br /&gt;
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)&lt;br /&gt;
        If disposing AndAlso components IsNot Nothing Then&lt;br /&gt;
            components.Dispose()&lt;br /&gt;
        End If&lt;br /&gt;
        MyBase.Dispose(disposing)&lt;br /&gt;
    End Sub&lt;br /&gt;
    &amp;quot;Required by the Windows Form Designer&lt;br /&gt;
    Private components As System.ruponentModel.IContainer&lt;br /&gt;
    &amp;quot;NOTE: The following procedure is required by the Windows Form Designer&lt;br /&gt;
    &amp;quot;It can be modified using the Windows Form Designer.  &lt;br /&gt;
    &amp;quot;Do not modify it using the code editor.&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; _&lt;br /&gt;
    Private Sub InitializeComponent()&lt;br /&gt;
        Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel&lt;br /&gt;
        Me.Label1 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label7 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label2 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.TextBox4 = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.TextBox1 = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.TextBox3 = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.Label3 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.TextBox2 = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.TextBox5 = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.Label5 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label8 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label6 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.ruboBox1 = New System.Windows.Forms.ruboBox&lt;br /&gt;
        Me.TableLayoutPanel1.SuspendLayout()&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TableLayoutPanel1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TableLayoutPanel1.AutoSize = True&lt;br /&gt;
        Me.TableLayoutPanel1.ColumnCount = 2&lt;br /&gt;
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 80.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 192.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label1, 0, 0)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label7, 0, 1)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label2, 0, 2)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.TextBox4, 1, 1)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.TextBox1, 1, 2)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.TextBox3, 1, 3)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label3, 0, 3)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.TextBox2, 1, 4)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.TextBox5, 1, 6)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label5, 0, 5)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label8, 0, 4)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label6, 0, 6)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.ruboBox1, 1, 5)&lt;br /&gt;
        Me.TableLayoutPanel1.Location = New System.Drawing.Point(7, 7)&lt;br /&gt;
        Me.TableLayoutPanel1.Name = &amp;quot;TableLayoutPanel1&amp;quot;&lt;br /&gt;
        Me.TableLayoutPanel1.RowCount = 7&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.Size = New System.Drawing.Size(272, 182)&lt;br /&gt;
        Me.TableLayoutPanel1.TabIndex = 1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label1.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D&lt;br /&gt;
        Me.TableLayoutPanel1.SetColumnSpan(Me.Label1, 2)&lt;br /&gt;
        Me.Label1.Location = New System.Drawing.Point(36, 0)&lt;br /&gt;
        Me.Label1.Name = &amp;quot;Label1&amp;quot;&lt;br /&gt;
        Me.Label1.Size = New System.Drawing.Size(200, 20)&lt;br /&gt;
        Me.Label1.TabIndex = 37&lt;br /&gt;
        Me.Label1.Text = &amp;quot;Employee&amp;quot;&lt;br /&gt;
        Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label7&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label7.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label7.AutoSize = True&lt;br /&gt;
        Me.Label7.Location = New System.Drawing.Point(11, 23)&lt;br /&gt;
        Me.Label7.Name = &amp;quot;Label7&amp;quot;&lt;br /&gt;
        Me.Label7.Size = New System.Drawing.Size(57, 13)&lt;br /&gt;
        Me.Label7.TabIndex = 38&lt;br /&gt;
        Me.Label7.Text = &amp;quot;First Name&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label2.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label2.AutoSize = True&lt;br /&gt;
        Me.Label2.Location = New System.Drawing.Point(11, 43)&lt;br /&gt;
        Me.Label2.Name = &amp;quot;Label2&amp;quot;&lt;br /&gt;
        Me.Label2.Size = New System.Drawing.Size(58, 13)&lt;br /&gt;
        Me.Label2.TabIndex = 40&lt;br /&gt;
        Me.Label2.Text = &amp;quot;Last Name&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TextBox4&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TextBox4.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.TextBox4.Location = New System.Drawing.Point(83, 23)&lt;br /&gt;
        Me.TextBox4.Name = &amp;quot;TextBox4&amp;quot;&lt;br /&gt;
        Me.TextBox4.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.TextBox4.TabIndex = 0&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TextBox1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TextBox1.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.TextBox1.Location = New System.Drawing.Point(83, 43)&lt;br /&gt;
        Me.TextBox1.Name = &amp;quot;TextBox1&amp;quot;&lt;br /&gt;
        Me.TextBox1.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.TextBox1.TabIndex = 1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TextBox3&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TextBox3.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.TextBox3.Location = New System.Drawing.Point(83, 63)&lt;br /&gt;
        Me.TextBox3.Name = &amp;quot;TextBox3&amp;quot;&lt;br /&gt;
        Me.TextBox3.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.TextBox3.TabIndex = 2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label3&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label3.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label3.AutoSize = True&lt;br /&gt;
        Me.Label3.Location = New System.Drawing.Point(22, 63)&lt;br /&gt;
        Me.Label3.Name = &amp;quot;Label3&amp;quot;&lt;br /&gt;
        Me.Label3.Size = New System.Drawing.Size(35, 13)&lt;br /&gt;
        Me.Label3.TabIndex = 42&lt;br /&gt;
        Me.Label3.Text = &amp;quot;Street&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TextBox2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TextBox2.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.TextBox2.Location = New System.Drawing.Point(83, 83)&lt;br /&gt;
        Me.TextBox2.Name = &amp;quot;TextBox2&amp;quot;&lt;br /&gt;
        Me.TextBox2.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.TextBox2.TabIndex = 3&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TextBox5&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TextBox5.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.TextBox5.Location = New System.Drawing.Point(144, 141)&lt;br /&gt;
        Me.TextBox5.Name = &amp;quot;TextBox5&amp;quot;&lt;br /&gt;
        Me.TextBox5.Size = New System.Drawing.Size(64, 20)&lt;br /&gt;
        Me.TextBox5.TabIndex = 5&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label5&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label5.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label5.AutoSize = True&lt;br /&gt;
        Me.Label5.Location = New System.Drawing.Point(24, 103)&lt;br /&gt;
        Me.Label5.Name = &amp;quot;Label5&amp;quot;&lt;br /&gt;
        Me.Label5.Size = New System.Drawing.Size(32, 13)&lt;br /&gt;
        Me.Label5.TabIndex = 46&lt;br /&gt;
        Me.Label5.Text = &amp;quot;State&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label8&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label8.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label8.AutoSize = True&lt;br /&gt;
        Me.Label8.Location = New System.Drawing.Point(28, 83)&lt;br /&gt;
        Me.Label8.Name = &amp;quot;Label8&amp;quot;&lt;br /&gt;
        Me.Label8.Size = New System.Drawing.Size(24, 13)&lt;br /&gt;
        Me.Label8.TabIndex = 51&lt;br /&gt;
        Me.Label8.Text = &amp;quot;City&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label6&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label6.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label6.AutoSize = True&lt;br /&gt;
        Me.Label6.Location = New System.Drawing.Point(29, 144)&lt;br /&gt;
        Me.Label6.Name = &amp;quot;Label6&amp;quot;&lt;br /&gt;
        Me.Label6.Size = New System.Drawing.Size(22, 13)&lt;br /&gt;
        Me.Label6.TabIndex = 52&lt;br /&gt;
        Me.Label6.Text = &amp;quot;Zip&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ComboBox1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ruboBox1.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.ruboBox1.FormattingEnabled = True&lt;br /&gt;
        Me.ruboBox1.Location = New System.Drawing.Point(152, 103)&lt;br /&gt;
        Me.ruboBox1.Name = &amp;quot;ComboBox1&amp;quot;&lt;br /&gt;
        Me.ruboBox1.Size = New System.Drawing.Size(48, 21)&lt;br /&gt;
        Me.ruboBox1.TabIndex = 54&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Form1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)&lt;br /&gt;
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font&lt;br /&gt;
        Me.ClientSize = New System.Drawing.Size(287, 197)&lt;br /&gt;
        Me.Controls.Add(Me.TableLayoutPanel1)&lt;br /&gt;
        Me.Name = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        Me.Text = &amp;quot;UseTableLayoutPanel&amp;quot;&lt;br /&gt;
        Me.TableLayoutPanel1.ResumeLayout(False)&lt;br /&gt;
        Me.TableLayoutPanel1.PerformLayout()&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
        Me.PerformLayout()&lt;br /&gt;
    End Sub&lt;br /&gt;
    Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel&lt;br /&gt;
    Friend WithEvents Label1 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label7 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label2 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents TextBox4 As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents TextBox1 As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents TextBox3 As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents Label3 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents TextBox2 As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents TextBox5 As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents Label5 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label8 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label6 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents ComboBox1 As System.Windows.Forms.ruboBox&lt;br /&gt;
End Class&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>