Cita:
Empezado por egostar
PD, me enseñas a hacer eso 
|
Supongo que a crear los Labels sin los Frames.
Digamos que los ponemos dentro de un panel, por eso lo del Parent.
Código Delphi
[-]
var
aTop, Ind : Integer;
Lab : TLabel;
begin
aTop := 10;
for Ind:=0 to ComboBox1.Items.Count-1 do
begin
Lab := TLabel.Create(Self);
Lab.Parent := panel1;
Lab.Name := 'Label'+IntToStr(Ind);
Lab.Caption := ComboBox1.Items[Ind];
Lab.Top := aTop;
Lab.Left := 20;
Inc(aTop,15);
end;
end;
Yo también estoy con ustedes,sería bueno que nos de mas información.
Saluditos