How do I change the height of a textbox ?
Neither of the below work:
this.TextBox1.Size = new System.Drawing.Size(173, 100);
set the minimum size property
tb_01.MinimumSize = new Size(500, 300);
This is working for me.