Ver Mensaje Individual
  #5  
Antiguo 21-01-2004
esquerda21 esquerda21 is offline
Miembro
 
Registrado: may 2003
Posts: 51
Reputación: 22
esquerda21 Va por buen camino
He conseguido introducirlo pero...
-------------------- soc : TStringLIst
var
indice: integer;
i: integer;
temp: TStringLIst;
begin
I:= 0;
indice:= soc.AddObject('0', TStringLIst.create());
temp:= soc.Objects[indice] as TStringList;
while i <> 5 do
begin
temp.Add(inttostr(i + 10));
i:= i + 1;
end;
-----------------
Como hago para representarlo en un listbox? algo así..

form1.ListBox1.Items.Add(TstringList(soc[0]objects[0].strings[0]);??
Responder Con Cita