I have a textbox in VB6 Control with some data populated from database. When there is no data, it will be blank. Now my requirement is, that textbox should be Read only and it should have some tooltip text.
I tried to keep Textbox1.Enabled = false
But this is not displaying my tooltip.
When I keep Textbox1.Locked = True
I am getting the tooltip, But I am able to edit the text in the textbox, we should not be able to do that.
Please suggest me any solution.