Tool tips

There is a ToolTip component you access thru code.

Visual Basic:
Dim a As New ToolTip()

a.SetToolTip(Button1, "This is a tooltip")
 
Look at my example; it adds the text "This is a tooltip" to the tooltip
of Button1.
 
Add a tooltop component to your form, from your toolbox. Every control on the form will then gain a Tooltip property.
 
Back
Top