Where is the Tip Attribute of a TextBox?

  • Thread starter Thread starter watcher
  • Start date Start date
W

watcher

I want to write some words to tell the user what is the TextBox's
requirement when user mouse hover a TextBox,but i could not find out this
attribute.

many thanks.
 
Drop a ToolTip control from the Toolbox onto your form. Then look again at
your TextBox properties...you should see a new one called something like
ToolTip on toolTip1 (under Misc category).

-sb
 
In facto, when dropping a ToolTip object in a form, you can have that
property en as many objects as you have.

You can write the tooltip by accesing that property or bay writing the
following code:

tlTipMain.SetToolTip(this.btnLoad, "Loads the data");



Best regards,



Steven Lewis
 
Back
Top