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
This code is working for me
After this i can see the tooltiptext when i hold the mouse over the text box.Code:Private Sub Command1_Click()
Text1.Enabled = True
Text1.ToolTipText = "message"
End Sub
The code should work just fine. You might double-check where you are executing the code from.
Try This
Private Sub Text1_GotFocus()
Text1.Enabled = True
Text1.ToolTipText = "message"
End Sub
Private Sub Text1_LostFocus()
Text1.Enabled = False
Text1.ToolTipText = ""
End Sub
Cheers
Ray