Creating components at runtime - Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T11:39:42Zhttp://stackoverflow.com/feeds/question/1005373http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi1Creating components at runtime - DelphiLuckyNeo2009-06-17T06:12:06Z2009-10-22T08:05:25Z
<p>Hi,</p>
<p>how can I create a component at runtime and then work with it (changing properties, etc.)?</p>
http://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi/1005376#10053760Answer by Tobias Langner for Creating components at runtime - DelphiTobias Langner2009-06-17T06:14:36Z2009-06-17T11:53:31Z<p>Very ease. Call Create. Example:</p>
<pre><code>procedure test
var
b : TButton;
begin
b:=TButton.Create(nil);
b.visible:=false;
end;
</code></pre>
<p>This creates a component (TButton is a component) at runtime and sets the property visible.</p>
<p><hr /></p>
<p>For the constructor: pass nil if you want to manage the memory yourself. Pass a pointer another component if you want to have it destroyed when the other component is destroyed.</p>
http://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi/1005382#100538223Answer by DR for Creating components at runtime - DelphiDR2009-06-17T06:18:03Z2009-10-22T08:05:25Z<p>It depends if it is a visual or non-visual component. The principle is the same, but there are some additional considerations for each kind of component.</p>
<p><strong>For non-visual components</strong></p>
<pre><code>var
C: TMyComponent;
begin
C := TMyComponent.Create(nil);
try
C.MyProperty := MyValue;
//...
finally
C.Free;
end;
end;
</code></pre>
<p><strong>For visual components:</strong> </p>
<p>In essence visual components are created in the the same way as non-visual components. But you have to set some additional properties to make them visible.</p>
<pre><code>var
C: TMyVisualComponent;
begin
C := TMyVisualComponent.Create(Self);
C.Left := 100;
C.Top := 100;
C.Width := 400;
C.Height := 300;
C.Visible := True;
C.Parent := Self; //Assuming you are calling this from a form
C.MyProperty := MyValue,
//...
end;
</code></pre>
<p>A few explanations to the code above:</p>
<ul>
<li>By setting the owner of the component (the parameter of the constructor) the component gets destroyed when the owning form gets destroyed. </li>
<li>Setting the <code>Parent</code> property makes the component visible. If you forget it your component will not displayed. (It's easy to miss that one :) )</li>
</ul>
<p>If you want <strong>many components</strong> you can do the same as above but in a loop:</p>
<pre><code>var
B: TButton;
i: Integer;
begin
for i := 0 to 9 do
begin
B := TButton.Create(Self);
B.Caption := Format('Button %d', [i]);
B.Parent := Self;
B.Height := 23;
B.Width := 100;
B.Left := 10;
B.Top := 10 + i * 25;
end;
end;
</code></pre>
<p>This will add 10 buttons at the left border of the form. If you want to modify the buttons later, you can store them in a list. (<a href="http://www.freepascal.org/docs-html/fcl/contnrs/tcomponentlist.html" rel="nofollow">TComponentList</a> ist best suited, but also take a look at the proposals from the comments to this answer)</p>
<p><strong>How to assign event handlers:</strong></p>
<p>You have to create an event handler method and assign it to the event property.</p>
<pre><code>procedure TForm1.MyButtonClick(Sender: TObject);
var
Button: TButton;
begin
Button := Sender as TButton;
ShowMessage(Button.Caption + ' clicked');
end;
B := TButton.Create;
//...
B.OnClick := MyButtonClick;
</code></pre>
http://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi/1005576#100557612Answer by gabr for Creating components at runtime - Delphigabr2009-06-17T07:22:42Z2009-06-17T07:22:42Z<p>To simplify the runtime component creation process, you can use <a href="http://www.gexperts.org" rel="nofollow">GExperts</a>. </p>
<ol>
<li>Create a component (or more components) visually and set its properties.</li>
<li>Select one or more components and execute GExperts, Components to Code.</li>
<li>Paste the generated code into your application.</li>
<li>Remove component(s) from the visual form designer.</li>
</ol>
<p>Example (TButton-creation code generated in this way):</p>
<pre><code>var
btnTest: TButton;
btnTest := TButton.Create(Self);
with btnTest do
begin
Name := 'btnTest';
Parent := Self;
Left := 272;
Top := 120;
Width := 161;
Height := 41;
Caption := 'Component creation test';
Default := True;
ParentFont := False;
TabOrder := 0;
end;
</code></pre>
http://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi/1006438#10064381Answer by Despatcher for Creating components at runtime - DelphiDespatcher2009-06-17T11:20:45Z2009-06-17T11:20:45Z<blockquote>
<p>But if I don't surely know how many components I want to create, e.g. if it depends on user's decision. So how can I declare components dynamically?</p>
</blockquote>
<p>The answer has been suggested - the easiest way is a List of Objects(components). TObjectList is the simplest to use (in unit contnrs). Lists are great! </p>
<pre><code> In Form1 Public
MyList: TObjectList;
procedure AnyButtonClick(Sender: TObject);
</code></pre>
<p>// You can get more sophisticated and declare //TNotifyevents and assign them but lets keep it simple :)
.
.
.</p>
<pre><code>procedure Tform1.AnyButtonClick(Sender: TObject);
begin
If Sender is TButton then
begin
Case Tbutton(Sender).Tag of
.
.
.
// Or You can use the index in the list or some other property
// you have to decide what to do
// Or similar :)
end;
end;
procedure TForm1.BtnAddComponent(Sender: TObJect)
var
AButton: TButton;
begin
AButton := TButton.Create(self);
Abutton. Parent := [Self], [Panel1] [AnOther Visual Control];
AButton.OnClick := AnyButtonClick;
// Set Height and width and caption ect.
.
.
.
AButton.Tag := MyList.Add(AButton);
end;
</code></pre>
<p>An Object list can contain any object visual or not but that gives you an added overhead of sorting out which items are which - better to have related lists if you want multiple dynamic controls on similar panels for instance.</p>
<p>Note: like other commenters I may have over-simplified for brevity but I hope you ge the idea. You need a mechanism to manage the objects once they are created and lists are excellent for this stuff.</p>
http://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi/1007256#10072560Answer by mjustin for Creating components at runtime - Delphimjustin2009-06-17T14:07:42Z2009-06-17T14:07:42Z<p>Some components override the 'Loaded' method. This method will not be called automatically if you create an instance at runtime. It will be called by Delphi when loading from the form file (DFM) is complete.</p>
<p>If the method contains initialization code, your application might show unexpected behaviour when created at runtime. In this case, check if the component writer has used this method.</p>
http://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi/1007798#10077980Answer by Peter Turner for Creating components at runtime - DelphiPeter Turner2009-06-17T15:32:11Z2009-06-17T15:32:11Z<p>If you nest win controls in Group Boxes/Page Controls/Etc..., I think it is beneficial to have the parent group box also be the owner. I've noticed a sharp decrease in window close times when doing this, as opposed to having the owner always be the main form.</p>
http://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi/1017975#10179750Answer by codervish for Creating components at runtime - Delphicodervish2009-06-19T13:32:18Z2009-06-19T13:32:18Z<p>During a research on "creating a delphi form using xml based template", I find something useful pointing out RTTI and using open tools api (ToolsApi.pas I think). Have a look at the interfaces in the unit.</p>