hello
how can i make a tooltiptext in a enabled textbox
help me please
farizza
Printable View
hello
how can i make a tooltiptext in a enabled textbox
help me please
farizza
Just go to the properties of the text box called tooltiptext and type in what ever you want the help or text to be.
Did you mean it that way?Code:If Text1.Enabled = True Then
Text1.ToolTipText = "Enabled!"
Else
Text1.ToolTipText = "Disabled!"
End If