tooltip property

dpan

Active member
Joined
Nov 22, 2005
Messages
28
Programming Experience
Beginner
Ok this is silly I know but I can't find it on any control. Where did tooltip property go? I'm using vb 2005.
 
there are tooltip properties for windows controls (actually you can have up to 255 of them i think)

all you've got to do is add a tooltip control to your form, then set the tooltip property on your textbox's, label's, button's.

statusbars on windows forms already have activated tooltip properties with and without the control being on the form


this is for vb2003 and higher, i dont know about vb2002
 
so...

VB.NET:
yourtooltip.settooltip(YourControl,"YourText")
?
 
yup

and you can do it in the designer too, by selecting the control on the form then typing the tooltip text into the tooltip property of the control
 
Back
Top