How do I change the height of a textbox ?
Neither of the below work:
this.TextBox1.Size = new System.Drawing.Size(173, 100);
Try the following :)
textBox1.Multiline = true; textBox1.Height = 100; textBox1.Width = 173;