OK, you place everything with the designer. Now I just want to place a create a TextBox on the Form. How do I do this? I just do:
Code:
TextBox t = new TextBox();
t.Location = new Point(10, 10);
this.controls.Add(t);
But it doesn't appear on the Form. What more do I need?