Link to home
Start Free TrialLog in
Avatar of Member_2_1242703
Member_2_1242703

asked on

ASP.NET(VB) - No vertical scroll in multiline textbox

Is there a way to have a multiline text box without the vertical scrollbar?
ASKER CERTIFIED SOLUTION
Avatar of mrichmon
mrichmon

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ethoths
ethoths

It should be possible to set a style atribute to remove it...

myTextBox.Style.Add("overflow", "hidden") or what ever effect you want.
Sorry mrichmon crossed posts wioth you.

My suggestion is that same as mrichmon exept I do it in the code behind rather than declaratively.
No problem :o)