I created a user control and want to add it in a form using:
Code:
  this.Controls.Add(attachmentControl);
  attachmentControl.Visible = true;
But the next time I wish to add another one I find that its added "behind" the older one.Are there any commands to place these controls serially (i.e. one below the other) ?