I am dynamicaly populating a text box, not intended to be changed by the user, but I do not want any scroll bars showing. I can remove the Horizontal one easily with the wrap command. How can I remove the vertical? Can I?
If you do not intend to let the user change the text in the textbox then why are you putting it in a textbox? If you just want the appearance of the textbox you could probable mock one up using CSS or something
I need to be able to dynamicaly change the text within the page without reloading. I could use a layer but the position on the page can move around depending on other factors.
Just put style="overflow: hidden;" in your text box. This will eliminate all the scrollbars but also make it impossible for the users to see the text if it is too big for the text box.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.