De hecho, puedes facilitar la inserción múltiple poniendo un ScrollBox (pestaña
Additional) y sustituyendo el código anterior por este otro:
Código Delphi
[-]
procedure TForm1.Button1Click(Sender: TObject);
begin
with TfrmTwitterEntry.Create(Self) do
begin
Name := '';
Align := alTop;
Parent := scbTwits;
lblUser.Caption := 'Román';
lblUserName.Caption := '@roman';
end;
end;
// Saludos