Ver Mensaje Individual
  #2  
Antiguo 19-07-2006
Avatar de seoane
[seoane] seoane is offline
Miembro Premium
 
Registrado: feb 2004
Ubicación: A Coruña, España
Posts: 3.717
Reputación: 24
seoane Va por buen camino
Prueba usando la propiedad DelimitedText:

Código Delphi [-]
var
  s: string;
begin
  s:= '1;2;3;4';
  Listbox1.Items.Delimiter:= ';';
  Listbox1.Items.DelimitedText:= s;
end;
Responder Con Cita