Registriert seit: 29. Mai 2002
Ort: Frankfurt
8.252 Beiträge
Delphi 2006 Professional
|
Re: Listbox un stringgrid übertragen
23. Sep 2004, 11:33
Hier mal ein Beispiel:
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
ndx : Integer;
begin
StringGrid1.RowCount := ListBox1.Count+1;
StringGrid1.ColCount := 2;
for ndx := 0 to Pred (ListBox1.Count) do
begin
StringGrid1.Cells[1,ndx+1] := ListBox1.Items[ndx];
end;
end;
Stephan B. "Lasst den Gänsen ihre Füßchen"
|