How to nevigate through all the text of a texbox when it is read only?
-
I have a textbox, I want that customer can only read its text but problem arises when text exceeds from the width of the textbox. In normal case we can read all the text by using arrow keys. How can I read text when textbox is read only?
Regards, Qaiser Nadeem
-
I have a textbox, I want that customer can only read its text but problem arises when text exceeds from the width of the textbox. In normal case we can read all the text by using arrow keys. How can I read text when textbox is read only?
Regards, Qaiser Nadeem
If you are not allowing customer to edit the field, why textbox is used ? Try to use
Label/Literal
instead.All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
I have a textbox, I want that customer can only read its text but problem arises when text exceeds from the width of the textbox. In normal case we can read all the text by using arrow keys. How can I read text when textbox is read only?
Regards, Qaiser Nadeem
Text area may be another option
--Akki