PDA

Click to See Complete Forum and Search --> : hhhrrv!


farizza
Nov 14th, 2000, 08:18 AM
hello
how can i make a tooltiptext in a enabled textbox
i use if txt.enabled = true then txt.tooltiptext = "message" and not working
help me please
farizza

Dr_Evil
Nov 14th, 2000, 01:45 PM
I have no problem here when enabling a TextBox and setting the ToolTipText property.

Just use the code under a button click or Form_Load event.

Text1.Enabled = True
Text1.ToolTipText = "Hello"

This will display Hello when you hover over the textbox for a couple seconds.