Set Tooltips for Label : Tooltips « GUI « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » GUI » Tooltips 
14.40.2.Set Tooltips for Label
Set Tooltips for Label
Imports System.Windows.Forms

public class FrmToolTip
   public Shared Sub Main
        Application.Run(New FrmToolTipDemonstration)
   End Sub
End class

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

   'Form overrides dispose to clean up the component list.
   <System.Diagnostics.DebuggerNonUserCode()> _
   Protected 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.lblSecond = New System.Windows.Forms.Label
      Me.labelsToolTip = New System.Windows.Forms.ToolTip(Me.components)
      Me.lblFirst = New System.Windows.Forms.Label
      Me.SuspendLayout()
      '
      'lblSecond
      '
      Me.lblSecond.AutoSize = True
      Me.lblSecond.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
      Me.lblSecond.Font = New System.Drawing.Font("Microsoft Sans Serif"10.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.lblSecond.Location = New System.Drawing.Point(1273)
      Me.lblSecond.Name = "lblSecond"
      Me.lblSecond.Size = New System.Drawing.Size(14719)
      Me.lblSecond.TabIndex = 3
      Me.lblSecond.Tag = ""
      Me.lblSecond.Text = "This is another Label."
      Me.labelsToolTip.SetToolTip(Me.lblSecond, "Second Label")
      '
      'lblFirst
      '
      Me.lblFirst.AutoSize = True
      Me.lblFirst.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
      Me.lblFirst.Font = New System.Drawing.Font("Microsoft Sans Serif"10.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.lblFirst.Location = New System.Drawing.Point(1224)
      Me.lblFirst.Name = "lblFirst"
      Me.lblFirst.Size = New System.Drawing.Size(10119)
      Me.lblFirst.TabIndex = 2
      Me.lblFirst.Text = "This is a label."
      Me.labelsToolTip.SetToolTip(Me.lblFirst, "First Label")
      '
      'FrmToolTipDemonstration
      '
      Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
      Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
      Me.ClientSize = New System.Drawing.Size(252124)
      Me.Controls.Add(Me.lblSecond)
      Me.Controls.Add(Me.lblFirst)
      Me.Name = "FrmToolTipDemonstration"
      Me.Text = "ToolTip Demonstration"
      Me.ResumeLayout(False)
      Me.PerformLayout()

   End Sub
   Friend WithEvents lblSecond As System.Windows.Forms.Label
   Friend WithEvents labelsToolTip As System.Windows.Forms.ToolTip
   Friend WithEvents lblFirst As System.Windows.Forms.Label

End Class
14.40.Tooltips
14.40.1.Add ToolTip to TextBoxAdd ToolTip to TextBox
14.40.2.Set Tooltips for LabelSet Tooltips for Label
14.40.3.Add ToolTip to TextBox and ComboBoxAdd ToolTip to TextBox and ComboBox
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.