Multiline textbox Scrollbars
How to hide the scrollbars in a multiline textbox ..How to hide the scrollbar?It is a Systems.Windows.Forms control.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Niradhip ChakrabortyPosted Sep 4, 2009, 1:33 AM
Roei BarPosted Sep 3, 2009, 12:00 PM
txtBox.ScrollBars = ScrollBars.None;
Kirtan PatelPosted Sep 3, 2009, 11:57 AM
dont forget to mark "Do you like answer" please it will give me some credits :)
private void Form1_Load(object sender, EventArgs e)
{
//hide Scroll Bars
textBox1.ScrollBars = ScrollBars.None;
}