Mega Code Archive

 
Categories / VB.Net Tutorial / GUI
 

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(12, 73)       Me.lblSecond.Name = "lblSecond"       Me.lblSecond.Size = New System.Drawing.Size(147, 19)       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(12, 24)       Me.lblFirst.Name = "lblFirst"       Me.lblFirst.Size = New System.Drawing.Size(101, 19)       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(252, 124)       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