<?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%2FTooltips</id>
		<title>VB.Net Tutorial/GUI/Tooltips - История изменений</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%2FTooltips"/>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/Tooltips&amp;action=history"/>
		<updated>2026-04-05T19:14:32Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/Tooltips&amp;diff=3912&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/Tooltips&amp;diff=3912&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/Tooltips&amp;diff=3913&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/Tooltips&amp;diff=3913&amp;oldid=prev"/>
				<updated>2010-05-26T12:57:26Z</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;==Add ToolTip to TextBox==&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.Drawing&lt;br /&gt;
Imports System.Drawing.Drawing2D&lt;br /&gt;
Imports System.Windows.Forms&lt;br /&gt;
public class AddToolTipToTextBox&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;
#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 Label1 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents ToolTip1 As System.Windows.Forms.ToolTip&lt;br /&gt;
    Friend WithEvents TextBox1 As System.Windows.Forms.TextBox&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; Private Sub InitializeComponent()&lt;br /&gt;
        Me.ruponents = New System.ruponentModel.Container&lt;br /&gt;
        Me.Label1 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.ruponents)&lt;br /&gt;
        Me.TextBox1 = 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(96, 120)&lt;br /&gt;
        Me.TextBox1.Name = &amp;quot;TextBox1&amp;quot;&lt;br /&gt;
        Me.TextBox1.TabIndex = 1&lt;br /&gt;
        Me.TextBox1.Text = &amp;quot;&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(292, 273)&lt;br /&gt;
        Me.Controls.Add(Me.TextBox1)&lt;br /&gt;
        Me.Controls.Add(Me.Label1)&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 Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;
        ToolTip1.SetToolTip(TextBox1, &amp;quot;This is a text box.&amp;quot;)&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Add ToolTip to TextBox and ComboBox==&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;
&lt;br /&gt;
public class SetToolTipForTextBoxAndComboBox&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;
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;
        ttHint.SetToolTip(txtFirstName, &amp;quot;first name&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(txtLastName, &amp;quot;last name&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(txtStreet, &amp;quot;address street number and name&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(txtCity, &amp;quot;city&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(cboState, &amp;quot;state&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(txtZip, &amp;quot;ZIP code&amp;quot;)&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&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.ruponents = New System.ruponentModel.Container&lt;br /&gt;
        Me.ttHint = New System.Windows.Forms.ToolTip(Me.ruponents)&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.txtFirstName = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.txtLastName = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.txtStreet = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.Label3 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.txtCity = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.txtZip = 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.cboState = 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, 136.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.txtFirstName, 1, 1)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.txtLastName, 1, 2)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.txtStreet, 1, 3)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label3, 0, 3)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.txtCity, 1, 4)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.txtZip, 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.cboState, 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)&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.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(13, 26)&lt;br /&gt;
        Me.Label7.Name = &amp;quot;Label7&amp;quot;&lt;br /&gt;
        Me.Label7.Size = New System.Drawing.Size(53, 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(13, 52)&lt;br /&gt;
        Me.Label2.Name = &amp;quot;Label2&amp;quot;&lt;br /&gt;
        Me.Label2.Size = New System.Drawing.Size(54, 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;txtFirstName&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtFirstName.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)&lt;br /&gt;
        Me.txtFirstName.Location = New System.Drawing.Point(83, 23)&lt;br /&gt;
        Me.txtFirstName.Name = &amp;quot;txtFirstName&amp;quot;&lt;br /&gt;
        Me.txtFirstName.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.txtFirstName.TabIndex = 0&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtFirstName, &amp;quot;Enter the customer&amp;quot;s first (given) name.&amp;quot;)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;txtLastName&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtLastName.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)&lt;br /&gt;
        Me.txtLastName.Location = New System.Drawing.Point(83, 49)&lt;br /&gt;
        Me.txtLastName.Name = &amp;quot;txtLastName&amp;quot;&lt;br /&gt;
        Me.txtLastName.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.txtLastName.TabIndex = 1&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtLastName, &amp;quot;Enter the customer&amp;quot;s last (family) name.&amp;quot;)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;txtStreet&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtStreet.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)&lt;br /&gt;
        Me.txtStreet.Location = New System.Drawing.Point(83, 75)&lt;br /&gt;
        Me.txtStreet.Name = &amp;quot;txtStreet&amp;quot;&lt;br /&gt;
        Me.txtStreet.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.txtStreet.TabIndex = 2&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtStreet, &amp;quot;Enter the customer&amp;quot;s stree address including apartment, suite, or other informati&amp;quot; &amp;amp; _&lt;br /&gt;
                &amp;quot;on.&amp;quot;)&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(24, 78)&lt;br /&gt;
        Me.Label3.Name = &amp;quot;Label3&amp;quot;&lt;br /&gt;
        Me.Label3.Size = New System.Drawing.Size(31, 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;txtCity&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtCity.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)&lt;br /&gt;
        Me.txtCity.Location = New System.Drawing.Point(83, 101)&lt;br /&gt;
        Me.txtCity.Name = &amp;quot;txtCity&amp;quot;&lt;br /&gt;
        Me.txtCity.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.txtCity.TabIndex = 3&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtCity, &amp;quot;Enter the customer&amp;quot;s city.&amp;quot;)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;txtZip&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtZip.Anchor = System.Windows.Forms.AnchorStyles.Left&lt;br /&gt;
        Me.txtZip.Location = New System.Drawing.Point(83, 156)&lt;br /&gt;
        Me.txtZip.Name = &amp;quot;txtZip&amp;quot;&lt;br /&gt;
        Me.txtZip.Size = New System.Drawing.Size(64, 20)&lt;br /&gt;
        Me.txtZip.TabIndex = 5&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtZip, &amp;quot;Enter the customer&amp;quot;s ZIP code.&amp;quot;)&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(26, 131)&lt;br /&gt;
        Me.Label5.Name = &amp;quot;Label5&amp;quot;&lt;br /&gt;
        Me.Label5.Size = New System.Drawing.Size(28, 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(30, 104)&lt;br /&gt;
        Me.Label8.Name = &amp;quot;Label8&amp;quot;&lt;br /&gt;
        Me.Label8.Size = New System.Drawing.Size(20, 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(31, 160)&lt;br /&gt;
        Me.Label6.Name = &amp;quot;Label6&amp;quot;&lt;br /&gt;
        Me.Label6.Size = New System.Drawing.Size(18, 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;cboState&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.cboState.Anchor = System.Windows.Forms.AnchorStyles.Left&lt;br /&gt;
        Me.cboState.FormattingEnabled = True&lt;br /&gt;
        Me.cboState.Location = New System.Drawing.Point(83, 127)&lt;br /&gt;
        Me.cboState.Name = &amp;quot;cboState&amp;quot;&lt;br /&gt;
        Me.cboState.Size = New System.Drawing.Size(48, 21)&lt;br /&gt;
        Me.cboState.TabIndex = 54&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.cboState, &amp;quot;Select the customer&amp;quot;s state.&amp;quot;)&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;UseToolTip&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 ttHint As System.Windows.Forms.ToolTip&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 txtFirstName As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents txtLastName As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents txtStreet As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents Label3 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents txtCity As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents txtZip 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 cboState As System.Windows.Forms.ruboBox&lt;br /&gt;
End Class&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Set Tooltips for Label==&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 FrmToolTip&lt;br /&gt;
   public Shared Sub Main&lt;br /&gt;
        Application.Run(New FrmToolTipDemonstration)&lt;br /&gt;
   End Sub&lt;br /&gt;
End class&lt;br /&gt;
&amp;lt;Global.Microsoft.VisualBasic.rupilerServices.DesignerGenerated()&amp;gt; _&lt;br /&gt;
Partial Class FrmToolTipDemonstration&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.ruponents = New System.ruponentModel.Container&lt;br /&gt;
      Me.lblSecond = New System.Windows.Forms.Label&lt;br /&gt;
      Me.labelsToolTip = New System.Windows.Forms.ToolTip(Me.ruponents)&lt;br /&gt;
      Me.lblFirst = New System.Windows.Forms.Label&lt;br /&gt;
      Me.SuspendLayout()&lt;br /&gt;
      &amp;quot;&lt;br /&gt;
      &amp;quot;lblSecond&lt;br /&gt;
      &amp;quot;&lt;br /&gt;
      Me.lblSecond.AutoSize = True&lt;br /&gt;
      Me.lblSecond.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle&lt;br /&gt;
      Me.lblSecond.Font = New System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 10.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))&lt;br /&gt;
      Me.lblSecond.Location = New System.Drawing.Point(12, 73)&lt;br /&gt;
      Me.lblSecond.Name = &amp;quot;lblSecond&amp;quot;&lt;br /&gt;
      Me.lblSecond.Size = New System.Drawing.Size(147, 19)&lt;br /&gt;
      Me.lblSecond.TabIndex = 3&lt;br /&gt;
      Me.lblSecond.Tag = &amp;quot;&amp;quot;&lt;br /&gt;
      Me.lblSecond.Text = &amp;quot;This is another Label.&amp;quot;&lt;br /&gt;
      Me.labelsToolTip.SetToolTip(Me.lblSecond, &amp;quot;Second Label&amp;quot;)&lt;br /&gt;
      &amp;quot;&lt;br /&gt;
      &amp;quot;lblFirst&lt;br /&gt;
      &amp;quot;&lt;br /&gt;
      Me.lblFirst.AutoSize = True&lt;br /&gt;
      Me.lblFirst.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle&lt;br /&gt;
      Me.lblFirst.Font = New System.Drawing.Font(&amp;quot;Microsoft Sans Serif&amp;quot;, 10.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))&lt;br /&gt;
      Me.lblFirst.Location = New System.Drawing.Point(12, 24)&lt;br /&gt;
      Me.lblFirst.Name = &amp;quot;lblFirst&amp;quot;&lt;br /&gt;
      Me.lblFirst.Size = New System.Drawing.Size(101, 19)&lt;br /&gt;
      Me.lblFirst.TabIndex = 2&lt;br /&gt;
      Me.lblFirst.Text = &amp;quot;This is a label.&amp;quot;&lt;br /&gt;
      Me.labelsToolTip.SetToolTip(Me.lblFirst, &amp;quot;First Label&amp;quot;)&lt;br /&gt;
      &amp;quot;&lt;br /&gt;
      &amp;quot;FrmToolTipDemonstration&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(252, 124)&lt;br /&gt;
      Me.Controls.Add(Me.lblSecond)&lt;br /&gt;
      Me.Controls.Add(Me.lblFirst)&lt;br /&gt;
      Me.Name = &amp;quot;FrmToolTipDemonstration&amp;quot;&lt;br /&gt;
      Me.Text = &amp;quot;ToolTip Demonstration&amp;quot;&lt;br /&gt;
      Me.ResumeLayout(False)&lt;br /&gt;
      Me.PerformLayout()&lt;br /&gt;
   End Sub&lt;br /&gt;
   Friend WithEvents lblSecond As System.Windows.Forms.Label&lt;br /&gt;
   Friend WithEvents labelsToolTip As System.Windows.Forms.ToolTip&lt;br /&gt;
   Friend WithEvents lblFirst As System.Windows.Forms.Label&lt;br /&gt;
End Class&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>