<?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_Tutorial%2FGUI%2FAnchor_Dock</id>
		<title>VB.Net Tutorial/GUI/Anchor Dock - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net_Tutorial%2FGUI%2FAnchor_Dock"/>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/Anchor_Dock&amp;action=history"/>
		<updated>2026-04-05T07:38:22Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/Anchor_Dock&amp;diff=3850&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_Tutorial/GUI/Anchor_Dock&amp;diff=3850&amp;oldid=prev"/>
				<updated>2010-05-26T16:40:30Z</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_Tutorial/GUI/Anchor_Dock&amp;diff=3851&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/Anchor_Dock&amp;diff=3851&amp;oldid=prev"/>
				<updated>2010-05-26T12:57:08Z</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;==Constrol Anchor==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;Imports System.Windows.Forms&lt;br /&gt;
public class ControlAnchor&lt;br /&gt;
   public Shared Sub Main&lt;br /&gt;
        Application.Run(New Form1)&lt;br /&gt;
   End Sub&lt;br /&gt;
End class&lt;br /&gt;
Public Class Form1&lt;br /&gt;
    Inherits System.Windows.Forms.Form&lt;br /&gt;
    Public Sub New()&lt;br /&gt;
        MyBase.New()&lt;br /&gt;
        InitializeComponent()&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private components As System.ruponentModel.IContainer&lt;br /&gt;
    Friend WithEvents textBox1 As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents label1 As System.Windows.Forms.Label&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; Private Sub InitializeComponent()&lt;br /&gt;
        Me.textBox1 = New System.Windows.Forms.TextBox()&lt;br /&gt;
        Me.label1 = New System.Windows.Forms.Label()&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        Me.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _&lt;br /&gt;
                    Or System.Windows.Forms.AnchorStyles.Right)&lt;br /&gt;
        Me.textBox1.Location = New System.Drawing.Point(144, 16)&lt;br /&gt;
        Me.textBox1.Name = &amp;quot;textBox1&amp;quot;&lt;br /&gt;
        Me.textBox1.Size = New System.Drawing.Size(116, 20)&lt;br /&gt;
        Me.textBox1.TabIndex = 3&lt;br /&gt;
        Me.textBox1.Text = &amp;quot;textBox1&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;label1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.label1.Location = New System.Drawing.Point(8, 16)&lt;br /&gt;
        Me.label1.Name = &amp;quot;label1&amp;quot;&lt;br /&gt;
        Me.label1.Size = New System.Drawing.Size(125, 20)&lt;br /&gt;
        Me.label1.TabIndex = 2&lt;br /&gt;
        Me.label1.Text = &amp;quot;My perfectly-sized label&amp;quot;&lt;br /&gt;
        Me.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft&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(272, 54)&lt;br /&gt;
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.textBox1, Me.label1})&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Control Docking==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;Imports System.Windows.Forms&lt;br /&gt;
public class ControlDock&lt;br /&gt;
   public Shared Sub Main&lt;br /&gt;
        Application.Run(New Form1)&lt;br /&gt;
   End Sub&lt;br /&gt;
End class&lt;br /&gt;
&lt;br /&gt;
Public Class Form1&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 mainMenu1 As System.Windows.Forms.MainMenu&lt;br /&gt;
    Friend WithEvents menuItem1 As System.Windows.Forms.MenuItem&lt;br /&gt;
    Friend WithEvents menuItem2 As System.Windows.Forms.MenuItem&lt;br /&gt;
    Friend WithEvents menuItem3 As System.Windows.Forms.MenuItem&lt;br /&gt;
    Friend WithEvents menuItem4 As System.Windows.Forms.MenuItem&lt;br /&gt;
    Friend WithEvents listView1 As System.Windows.Forms.ListView&lt;br /&gt;
    Friend WithEvents splitter2 As System.Windows.Forms.Splitter&lt;br /&gt;
    Friend WithEvents treeView1 As System.Windows.Forms.TreeView&lt;br /&gt;
    Friend WithEvents splitter1 As System.Windows.Forms.Splitter&lt;br /&gt;
    Friend WithEvents statusBar1 As System.Windows.Forms.StatusBar&lt;br /&gt;
    Friend WithEvents groupBox1 As System.Windows.Forms.GroupBox&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; Private Sub InitializeComponent()&lt;br /&gt;
        Dim ListViewItem1 As System.Windows.Forms.ListViewItem = New System.Windows.Forms.ListViewItem(New System.Windows.Forms.ListViewItem.ListViewSubItem() {New System.Windows.Forms.ListViewItem.ListViewSubItem(Nothing, &amp;quot;Item 0&amp;quot;, System.Drawing.SystemColors.WindowText, System.Drawing.SystemColors.Window, New System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)))}, -1)&lt;br /&gt;
        Dim ListViewItem2 As System.Windows.Forms.ListViewItem = New System.Windows.Forms.ListViewItem(New System.Windows.Forms.ListViewItem.ListViewSubItem() {New System.Windows.Forms.ListViewItem.ListViewSubItem(Nothing, &amp;quot;Item 1&amp;quot;, System.Drawing.SystemColors.WindowText, System.Drawing.SystemColors.Window, New System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)))}, -1)&lt;br /&gt;
        Dim ListViewItem3 As System.Windows.Forms.ListViewItem = New System.Windows.Forms.ListViewItem(New System.Windows.Forms.ListViewItem.ListViewSubItem() {New System.Windows.Forms.ListViewItem.ListViewSubItem(Nothing, &amp;quot;Item 2&amp;quot;, System.Drawing.SystemColors.WindowText, System.Drawing.SystemColors.Window, New System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)))}, -1)&lt;br /&gt;
        Dim ListViewItem4 As System.Windows.Forms.ListViewItem = New System.Windows.Forms.ListViewItem(New System.Windows.Forms.ListViewItem.ListViewSubItem() {New System.Windows.Forms.ListViewItem.ListViewSubItem(Nothing, &amp;quot;Item 3&amp;quot;, System.Drawing.SystemColors.WindowText, System.Drawing.SystemColors.Window, New System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)))}, -1)&lt;br /&gt;
        Me.mainMenu1 = New System.Windows.Forms.MainMenu()&lt;br /&gt;
        Me.menuItem1 = New System.Windows.Forms.MenuItem()&lt;br /&gt;
        Me.menuItem2 = New System.Windows.Forms.MenuItem()&lt;br /&gt;
        Me.menuItem3 = New System.Windows.Forms.MenuItem()&lt;br /&gt;
        Me.menuItem4 = New System.Windows.Forms.MenuItem()&lt;br /&gt;
        Me.listView1 = New System.Windows.Forms.ListView()&lt;br /&gt;
        Me.splitter2 = New System.Windows.Forms.Splitter()&lt;br /&gt;
        Me.treeView1 = New System.Windows.Forms.TreeView()&lt;br /&gt;
        Me.splitter1 = New System.Windows.Forms.Splitter()&lt;br /&gt;
        Me.statusBar1 = New System.Windows.Forms.StatusBar()&lt;br /&gt;
        Me.groupBox1 = New System.Windows.Forms.GroupBox()&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;mainMenu1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.mainMenu1.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.menuItem1, Me.menuItem3})&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;menuItem1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.menuItem1.Index = 0&lt;br /&gt;
        Me.menuItem1.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.menuItem2})&lt;br /&gt;
        Me.menuItem1.Text = &amp;quot;&amp;amp;File&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;menuItem2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.menuItem2.Index = 0&lt;br /&gt;
        Me.menuItem2.Text = &amp;quot;E&amp;amp;xit&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;menuItem3&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.menuItem3.Index = 1&lt;br /&gt;
        Me.menuItem3.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.menuItem4})&lt;br /&gt;
        Me.menuItem3.Text = &amp;quot;&amp;amp;Help&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;menuItem4&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.menuItem4.Index = 0&lt;br /&gt;
        Me.menuItem4.Text = &amp;quot;&amp;amp;About...&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;listView1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.listView1.Dock = System.Windows.Forms.DockStyle.Fill&lt;br /&gt;
        Me.listView1.Items.AddRange(New System.Windows.Forms.ListViewItem() {ListViewItem1, ListViewItem2, ListViewItem3, ListViewItem4})&lt;br /&gt;
        Me.listView1.Name = &amp;quot;listView1&amp;quot;&lt;br /&gt;
        Me.listView1.Size = New System.Drawing.Size(232, 153)&lt;br /&gt;
        Me.listView1.TabIndex = 9&lt;br /&gt;
        Me.listView1.View = System.Windows.Forms.View.List&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;splitter2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.splitter2.Location = New System.Drawing.Point(121, 35)&lt;br /&gt;
        Me.splitter2.Name = &amp;quot;splitter2&amp;quot;&lt;br /&gt;
        Me.splitter2.Size = New System.Drawing.Size(3, 96)&lt;br /&gt;
        Me.splitter2.TabIndex = 11&lt;br /&gt;
        Me.splitter2.TabStop = False&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;treeView1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.treeView1.Dock = System.Windows.Forms.DockStyle.Left&lt;br /&gt;
        Me.treeView1.ImageIndex = -1&lt;br /&gt;
        Me.treeView1.Location = New System.Drawing.Point(0, 35)&lt;br /&gt;
        Me.treeView1.Name = &amp;quot;treeView1&amp;quot;&lt;br /&gt;
        Me.treeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {New System.Windows.Forms.TreeNode(&amp;quot;Node0&amp;quot;), New System.Windows.Forms.TreeNode(&amp;quot;Node1&amp;quot;, New System.Windows.Forms.TreeNode() {New System.Windows.Forms.TreeNode(&amp;quot;Node3&amp;quot;, New System.Windows.Forms.TreeNode() {New System.Windows.Forms.TreeNode(&amp;quot;Node4&amp;quot;, New System.Windows.Forms.TreeNode() {New System.Windows.Forms.TreeNode(&amp;quot;Node5&amp;quot;)})})}), New System.Windows.Forms.TreeNode(&amp;quot;Node2&amp;quot;)})&lt;br /&gt;
        Me.treeView1.SelectedImageIndex = -1&lt;br /&gt;
        Me.treeView1.Size = New System.Drawing.Size(121, 96)&lt;br /&gt;
        Me.treeView1.TabIndex = 7&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;splitter1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.splitter1.Dock = System.Windows.Forms.DockStyle.Top&lt;br /&gt;
        Me.splitter1.Location = New System.Drawing.Point(0, 32)&lt;br /&gt;
        Me.splitter1.Name = &amp;quot;splitter1&amp;quot;&lt;br /&gt;
        Me.splitter1.Size = New System.Drawing.Size(232, 3)&lt;br /&gt;
        Me.splitter1.TabIndex = 8&lt;br /&gt;
        Me.splitter1.TabStop = False&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;statusBar1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.statusBar1.Location = New System.Drawing.Point(0, 131)&lt;br /&gt;
        Me.statusBar1.Name = &amp;quot;statusBar1&amp;quot;&lt;br /&gt;
        Me.statusBar1.Size = New System.Drawing.Size(232, 22)&lt;br /&gt;
        Me.statusBar1.TabIndex = 6&lt;br /&gt;
        Me.statusBar1.Text = &amp;quot;statusBar1&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;groupBox1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.groupBox1.Dock = System.Windows.Forms.DockStyle.Top&lt;br /&gt;
        Me.groupBox1.Name = &amp;quot;groupBox1&amp;quot;&lt;br /&gt;
        Me.groupBox1.Size = New System.Drawing.Size(232, 32)&lt;br /&gt;
        Me.groupBox1.TabIndex = 10&lt;br /&gt;
        Me.groupBox1.TabStop = False&lt;br /&gt;
        Me.groupBox1.Text = &amp;quot;groupBox1&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(232, 153)&lt;br /&gt;
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.splitter2, Me.treeView1, Me.splitter1, Me.statusBar1, Me.groupBox1, Me.listView1})&lt;br /&gt;
        Me.Menu = Me.mainMenu1&lt;br /&gt;
        Me.Name = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        Me.Text = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
    End Sub&lt;br /&gt;
#End Region&lt;br /&gt;
    Private Sub menuItem2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles menuItem2.Click&lt;br /&gt;
        Me.Close()&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private Sub menuItem4_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles menuItem4.Click&lt;br /&gt;
        MessageBox.Show(&amp;quot;Message&amp;quot;, &amp;quot;About...&amp;quot;)&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Dock more than one controls to the bottom==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;Imports System.Windows.Forms&lt;br /&gt;
public class MultipleControlsDockBottom&lt;br /&gt;
   public Shared Sub Main&lt;br /&gt;
        Application.Run(New MultipleControls)&lt;br /&gt;
   End Sub&lt;br /&gt;
End class&lt;br /&gt;
Public Class MultipleControls&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 ListBox1 As System.Windows.Forms.ListBox&lt;br /&gt;
    Friend WithEvents DataGrid1 As System.Windows.Forms.DataGrid&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; Private Sub InitializeComponent()&lt;br /&gt;
        Me.ListBox1 = New System.Windows.Forms.ListBox&lt;br /&gt;
        Me.DataGrid1 = New System.Windows.Forms.DataGrid&lt;br /&gt;
        CType(Me.DataGrid1, System.ruponentModel.ISupportInitialize).BeginInit()&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ListBox1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ListBox1.Dock = System.Windows.Forms.DockStyle.Bottom&lt;br /&gt;
        Me.ListBox1.Location = New System.Drawing.Point(10, 161)&lt;br /&gt;
        Me.ListBox1.Name = &amp;quot;ListBox1&amp;quot;&lt;br /&gt;
        Me.ListBox1.Size = New System.Drawing.Size(272, 95)&lt;br /&gt;
        Me.ListBox1.TabIndex = 0&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;DataGrid1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.DataGrid1.CaptionText = &amp;quot;DataGrid&amp;quot;&lt;br /&gt;
        Me.DataGrid1.DataMember = &amp;quot;&amp;quot;&lt;br /&gt;
        Me.DataGrid1.Dock = System.Windows.Forms.DockStyle.Bottom&lt;br /&gt;
        Me.DataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText&lt;br /&gt;
        Me.DataGrid1.Location = New System.Drawing.Point(10, 81)&lt;br /&gt;
        Me.DataGrid1.Name = &amp;quot;DataGrid1&amp;quot;&lt;br /&gt;
        Me.DataGrid1.Size = New System.Drawing.Size(272, 80)&lt;br /&gt;
        Me.DataGrid1.TabIndex = 1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;MultipleControls&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(292, 266)&lt;br /&gt;
        Me.Controls.Add(Me.DataGrid1)&lt;br /&gt;
        Me.Controls.Add(Me.ListBox1)&lt;br /&gt;
        Me.DockPadding.All = 10&lt;br /&gt;
        Me.Name = &amp;quot;MultipleControls&amp;quot;&lt;br /&gt;
        Me.Text = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        CType(Me.DataGrid1, System.ruponentModel.ISupportInitialize).EndInit()&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
    End Sub&lt;br /&gt;
#End Region&lt;br /&gt;
End Class&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>