Create an array from the listbox, then loop through it. Or, simply loop through the array.
Here's some Delphi, since I think that's what you're working in
Code:
var
i : integer;
: //These mean that you can have other stuff too, it's just important to have the i : integer;
:
begin
:
:
for i := 0 to listbox1.count-1 do //I think that's how you do how many items in a listbox
edit1.Text := edit1.Text + listbox1[i];
:
:
end;
i dont whant to know how many strings it is i whant to know how to get the 1/2/3 string and paste the text to an edit box
and yes delphi is the lg =p _________________
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum