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
Printable View
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
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.
This will display Hello when you hover over the textbox for a couple seconds.Code:Text1.Enabled = True
Text1.ToolTipText = "Hello"