How to set a tip text on a button control

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'd like to know how to set a tip text onto a button control. i.e., to provide some information when users move the mouse over a button.

Thanks in advance
 
So easy. Drag a ToolTip control onto the form.

and IE

ToolTip1.SetToolTip(btnUP, "Here's how!")






--

OHM ( Terry Burns )
. . . One-Handed-Man . . .


Li Pang said:
Hi,

I'd like to know how to set a tip text onto a button control. i.e., to
provide some information when users move the mouse over a button.
 
* "=?Utf-8?B?TGkgUGFuZw==?= said:
I'd like to know how to set a tip text onto a button control. i.e., to provide some information when users move the mouse over a button.

From the toolbox, add a ToolTip component to your form. This component
will show up in the component tray below the Windows Forms editor for
the form. Then have a look at the button's properties -- there will be
an additional property where you can set the text of the tooltip for the
button control.
 
Back
Top