vote up 1 vote down star
TabPage newpage = new TabPage();
Tabs.TabPages.Add(newpage);
newpage.Controls.Add(this.tableLayoutPanel41);
newpage.Location = new System.Drawing.Point(4, 26);
newpage.Name = "AddMaintAgreement" + offset;
newpage.Size = new System.Drawing.Size(736, 523);
newpage.TabIndex = 10;
newpage.Text = "Add Maintenance Agreement";
newpage.UseVisualStyleBackColor = true;
offset++;

Basically thats what i have at the moment, I added the offset in there because i thought it might affect my problem.

Basically, this code here works okay for adding one "addmaintagreement" tab. After that only the latest tab has any controls on it!

Basically I'm stumped. Any help would be appreciated. Thanks.

flag

3 Answers

vote up 0 vote down

Controls can only be parented to one control, but it looks like you are trying to parent your tableLayoutPanel41 in every TabPage instance. You need to create new copies of the controls for each instance of the tab. There are various ways to fix this.

  1. Programmatically create your tab page and its contents multiple times.
  2. Have the contents of your TabPage implemented as a user control that you dock fill on a tab page. Then recreate one of those for each page duplicate your require.
  3. Create a class derived from TabPage that implements your tab page and create new instances of that for each use.
link|flag
vote up 1 vote down

Derive from TabPage and add the controls you want in that derived class. Then use your derived class instead of TabPage.

link|flag
vote up 0 vote down

I am not very familiar with winforms, but the issue might be this line of code:

newpage.Controls.Add(this.tableLayoutPanel41);

I suspect that tableLayoutPanel41 can only have one parent and that parent is the last TabPage you added.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.