Dynamically add tab sheets to page control and embed a form?

41k Views Asked by At

I'm working on a module which consists of a page control. By default, this page control (TPageControl) shouldn't have any tab sheets (TTabSheet), but upon initialization, it should dynamically insert these pages and embed a form inside of it.

The issue comes with knowing how to insert a tab sheet into the page control. How do I create this? And once it's created, along with the forms inside each one, how do I iterate through them to destroy the forms?

3

There are 3 best solutions below

6
On BEST ANSWER

1. How to dynamically create a tab sheet ?

procedure TForm1.Button1Click(Sender: TObject);
var
  TabSheet: TTabSheet;
begin
  TabSheet := TTabSheet.Create(PageControl1);
  TabSheet.Caption := 'New Tab Sheet';
  TabSheet.PageControl := PageControl1;
end;

2. How to embed a form inside of a tab sheet ?

To insert a form inside of a tab sheet use simply a parent change:

Form2.Parent := TabSheet;
Form2.Show;

3. Will I need to manually free the forms embedded into a tab sheet when destroying it ?

No, it is enough to free a tab sheet. In case when the forms will have a tab sheet, or to be more precise, the TWinControl as their Parent, that parent will take care of their release when freeing itself.

1
On

David Heffernan is right.

Form2.Parent := TabSheet;
Form2.Show;

This code just means Form2's parent is TabSheet, not it's owner.

You can create the form like this:

Form2 := TForm2.Create(nil);

and then free it by yourself. or you can create a form like this:

Form2 := TForm2.Create(Form1);

Form1 is the owner of Form2, and it will automatically free Form2 when itself is freed.

0
On

I do the same in a project that has over 100 forms (1 per DLL). I set the FormClose Action to caFree - some customers run this product 24x, for a couple years without issue. Only leaks found are in Borland's VCL. Project started in D5, then D7, and we are in the process of porting to Alexandria 11.2 (D35 I think). I may port to Lazarus and migrate to Mac and Linux desktop users.