Yeah, sure you can. In fact, that's what's happening with the code that the designer creates for you. You can do things like this:
Code:
Label myLabel = new Label();
myLabel.Name = "Label1";
myLabel.Text = "I am a new Label";
this.Controls.Add(myLabel);
myLabel.Location = new Point(100, 100);
This will create a new Label and add it to the form at the specified location with the specified text.
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.