Wikia

Delphi Programming

Watchlist Recent changes

Using Delphi to Create Components Dynamically

To create a label component on the fly, create a new project with one form. On that form place a button and double-click on it to edit the click event handler. Write the following code:

 procedure TForm1.Button1Click(Sender: TObject);
 var
   aLabel: TLabel;
 begin
   aLabel := TLabel.Create(self);
   aLabel.Parent := self;
   aLabel.Visible := True;
   aLabel.Caption := 'Created dynamically!';
   aLabel.Top := 10;
   aLabel.Left := 10;
 end;

Run the application and click on the button and you'll see the label created on the fly. You can even put instances of components in an array and manage them in a similar way to VBs Control Arrays.

See also:Edit

Pages on Delphi Programming

Add a Page
2,893pages on
this wiki

Latest Photos

Add a Photo
160photos on this wiki
See more >

Recent Wiki Activity

See more >

Around Wikia's network

Random Wiki