hola althenna, ya tengo el codigo para sacar de los numero de un memo y colocarlo a listbox, si no te lo pase antes es por el tiempo, ah por la segunda pregunta, trata de aprenderlo por tu cuenta, que es donde mejor se aprende y donde mejor se te queda, aqui esta el codigo
tienes que tener un boton, un Tmemo(memTexto) y TComboBox(CboLista)
procedure TForm1.CmdProbarClick(Sender: TObject);
var
texto, num : string;
i : Integer; //contador
begin
texto := memTexto.Text;
num := '';
CboLista.Clear; //limpiar el combo
for i:= 1 to Length(texto) do
begin
case texto[i] of
'0'..'9': num := num + texto[i];
else
if num <> '' then
begin
CboLista.AddItem(num,nil);
num := '';
end;
end;
end;
if num <> '' then
CboLista.AddItem(num,nil);
end;
Claro, que al codigo puedes quitarle algunas cosas y hacerlo mas eficiente, eso tambien queda a tu cuenta...