Set up the Tooltip : Tooltip « GUI « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » GUI » TooltipScreenshots 
Set up the Tooltip
Set up the Tooltip

Imports System
Imports System.Data
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Data.SqlClient

public class MainClass
   Shared Sub Main()
       Dim form1 As Form = New Form1
       Application.Run(form1)
   End Sub
End Class


Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgsHandles MyBase.Load
        ' Comment these lines out to use the ToolTip valeus set at design time.
        ttHint.SetToolTip(txtFirstName, "First Name Field")
        ttHint.SetToolTip(txtLastName, "Last Name Field")
        ttHint.SetToolTip(txtStreet, "Street")
        ttHint.SetToolTip(txtCity, "City")
        ttHint.SetToolTip(cboState, "State")
        ttHint.SetToolTip(txtZip, "ZIP")
    End Sub
End Class



<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class Form1
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container
        Me.ttHint = New System.Windows.Forms.ToolTip(Me.components)
        Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel
        Me.Label1 = New System.Windows.Forms.Label
        Me.Label7 = New System.Windows.Forms.Label
        Me.Label2 = New System.Windows.Forms.Label
        Me.txtFirstName = New System.Windows.Forms.TextBox
        Me.txtLastName = New System.Windows.Forms.TextBox
        Me.txtStreet = New System.Windows.Forms.TextBox
        Me.Label3 = New System.Windows.Forms.Label
        Me.txtCity = New System.Windows.Forms.TextBox
        Me.txtZip = New System.Windows.Forms.TextBox
        Me.Label5 = New System.Windows.Forms.Label
        Me.Label8 = New System.Windows.Forms.Label
        Me.Label6 = New System.Windows.Forms.Label
        Me.cboState = New System.Windows.Forms.ComboBox
        Me.TableLayoutPanel1.SuspendLayout()
        Me.SuspendLayout()
        '
        'TableLayoutPanel1
        '
        Me.TableLayoutPanel1.AutoSize = True
        Me.TableLayoutPanel1.ColumnCount = 2
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 80.0!))
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 136.0!))
        Me.TableLayoutPanel1.Controls.Add(Me.Label1, 00)
        Me.TableLayoutPanel1.Controls.Add(Me.Label7, 01)
        Me.TableLayoutPanel1.Controls.Add(Me.Label2, 02)
        Me.TableLayoutPanel1.Controls.Add(Me.txtFirstName, 11)
        Me.TableLayoutPanel1.Controls.Add(Me.txtLastName, 12)
        Me.TableLayoutPanel1.Controls.Add(Me.txtStreet, 13)
        Me.TableLayoutPanel1.Controls.Add(Me.Label3, 03)
        Me.TableLayoutPanel1.Controls.Add(Me.txtCity, 14)
        Me.TableLayoutPanel1.Controls.Add(Me.txtZip, 16)
        Me.TableLayoutPanel1.Controls.Add(Me.Label5, 05)
        Me.TableLayoutPanel1.Controls.Add(Me.Label8, 04)
        Me.TableLayoutPanel1.Controls.Add(Me.Label6, 06)
        Me.TableLayoutPanel1.Controls.Add(Me.cboState, 15)
        Me.TableLayoutPanel1.Location = New System.Drawing.Point(77)
        Me.TableLayoutPanel1.Name = "TableLayoutPanel1"
        Me.TableLayoutPanel1.RowCount = 7
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)
        Me.TableLayoutPanel1.Size = New System.Drawing.Size(272182)
        Me.TableLayoutPanel1.TabIndex = 1
        '
        'Label1
        '
        Me.Label1.Anchor = System.Windows.Forms.AnchorStyles.None
        Me.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
        Me.TableLayoutPanel1.SetColumnSpan(Me.Label1, 2)
        Me.Label1.Location = New System.Drawing.Point(360)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(20020)
        Me.Label1.TabIndex = 37
        Me.Label1.Text = "Employee"
        Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
        '
        'Label7
        '
        Me.Label7.Anchor = System.Windows.Forms.AnchorStyles.None
        Me.Label7.AutoSize = True
        Me.Label7.Location = New System.Drawing.Point(1326)
        Me.Label7.Name = "Label7"
        Me.Label7.Size = New System.Drawing.Size(5313)
        Me.Label7.TabIndex = 38
        Me.Label7.Text = "First Name"
        '
        'Label2
        '
        Me.Label2.Anchor = System.Windows.Forms.AnchorStyles.None
        Me.Label2.AutoSize = True
        Me.Label2.Location = New System.Drawing.Point(1352)
        Me.Label2.Name = "Label2"
        Me.Label2.Size = New System.Drawing.Size(5413)
        Me.Label2.TabIndex = 40
        Me.Label2.Text = "Last Name"
        '
        'txtFirstName
        '
        Me.txtFirstName.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtFirstName.Location = New System.Drawing.Point(8323)
        Me.txtFirstName.Name = "txtFirstName"
        Me.txtFirstName.Size = New System.Drawing.Size(18620)
        Me.txtFirstName.TabIndex = 0
        Me.ttHint.SetToolTip(Me.txtFirstName, "Enter the customer's first (given) name.")
        '
        'txtLastName
        '
        Me.txtLastName.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtLastName.Location = New System.Drawing.Point(8349)
        Me.txtLastName.Name = "txtLastName"
        Me.txtLastName.Size = New System.Drawing.Size(18620)
        Me.txtLastName.TabIndex = 1
        Me.ttHint.SetToolTip(Me.txtLastName, "Enter the customer's last (family) name.")
        '
        'txtStreet
        '
        Me.txtStreet.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtStreet.Location = New System.Drawing.Point(8375)
        Me.txtStreet.Name = "txtStreet"
        Me.txtStreet.Size = New System.Drawing.Size(18620)
        Me.txtStreet.TabIndex = 2
        Me.ttHint.SetToolTip(Me.txtStreet, "Enter the customer's stree address including apartment, suite, or other informati" & _
                "on.")
        '
        'Label3
        '
        Me.Label3.Anchor = System.Windows.Forms.AnchorStyles.None
        Me.Label3.AutoSize = True
        Me.Label3.Location = New System.Drawing.Point(2478)
        Me.Label3.Name = "Label3"
        Me.Label3.Size = New System.Drawing.Size(3113)
        Me.Label3.TabIndex = 42
        Me.Label3.Text = "Street"
        '
        'txtCity
        '
        Me.txtCity.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtCity.Location = New System.Drawing.Point(83101)
        Me.txtCity.Name = "txtCity"
        Me.txtCity.Size = New System.Drawing.Size(18620)
        Me.txtCity.TabIndex = 3
        Me.ttHint.SetToolTip(Me.txtCity, "Enter the customer's city.")
        '
        'txtZip
        '
        Me.txtZip.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.txtZip.Location = New System.Drawing.Point(83156)
        Me.txtZip.Name = "txtZip"
        Me.txtZip.Size = New System.Drawing.Size(6420)
        Me.txtZip.TabIndex = 5
        Me.ttHint.SetToolTip(Me.txtZip, "Enter the customer's ZIP code.")
        '
        'Label5
        '
        Me.Label5.Anchor = System.Windows.Forms.AnchorStyles.None
        Me.Label5.AutoSize = True
        Me.Label5.Location = New System.Drawing.Point(26131)
        Me.Label5.Name = "Label5"
        Me.Label5.Size = New System.Drawing.Size(2813)
        Me.Label5.TabIndex = 46
        Me.Label5.Text = "State"
        '
        'Label8
        '
        Me.Label8.Anchor = System.Windows.Forms.AnchorStyles.None
        Me.Label8.AutoSize = True
        Me.Label8.Location = New System.Drawing.Point(30104)
        Me.Label8.Name = "Label8"
        Me.Label8.Size = New System.Drawing.Size(2013)
        Me.Label8.TabIndex = 51
        Me.Label8.Text = "City"
        '
        'Label6
        '
        Me.Label6.Anchor = System.Windows.Forms.AnchorStyles.None
        Me.Label6.AutoSize = True
        Me.Label6.Location = New System.Drawing.Point(31160)
        Me.Label6.Name = "Label6"
        Me.Label6.Size = New System.Drawing.Size(1813)
        Me.Label6.TabIndex = 52
        Me.Label6.Text = "Zip"
        '
        'cboState
        '
        Me.cboState.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.cboState.FormattingEnabled = True
        Me.cboState.Location = New System.Drawing.Point(83127)
        Me.cboState.Name = "cboState"
        Me.cboState.Size = New System.Drawing.Size(4821)
        Me.cboState.TabIndex = 54
        Me.ttHint.SetToolTip(Me.cboState, "Select the customer's state.")
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(287197)
        Me.Controls.Add(Me.TableLayoutPanel1)
        Me.Name = "Form1"
        Me.Text = "UseToolTip"
        Me.TableLayoutPanel1.ResumeLayout(False)
        Me.TableLayoutPanel1.PerformLayout()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents ttHint As System.Windows.Forms.ToolTip
    Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents Label7 As System.Windows.Forms.Label
    Friend WithEvents Label2 As System.Windows.Forms.Label
    Friend WithEvents txtFirstName As System.Windows.Forms.TextBox
    Friend WithEvents txtLastName As System.Windows.Forms.TextBox
    Friend WithEvents txtStreet As System.Windows.Forms.TextBox
    Friend WithEvents Label3 As System.Windows.Forms.Label
    Friend WithEvents txtCity As System.Windows.Forms.TextBox
    Friend WithEvents txtZip As System.Windows.Forms.TextBox
    Friend WithEvents Label5 As System.Windows.Forms.Label
    Friend WithEvents Label8 As System.Windows.Forms.Label
    Friend WithEvents Label6 As System.Windows.Forms.Label
    Friend WithEvents cboState As System.Windows.Forms.ComboBox

End Class

           
       
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.