Create Textbox |
| kalit sikka replied to Dharma K at 03-Jul-08 03:33 |
private TextBox txtBox = new TextBox();
this.txtBox.Text = "Text"; this.txtBox.Location = new System.Drawing.Point(10, 25); this.txtBox.Size = new System.Drawing.Size(70, 20);
this.width=250;
this.height=100;
this.Controls.Add(txtBox);
|
|