Tool tips

There is a ToolTip component you access thru code.

Code:
Dim a As New ToolTip()

a.SetToolTip(Button1, "This is a tooltip")
 
There is also the ToolTip control in your tool box, if you would rather do it that way :D

Orbity
 
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