hallo mkinzler,
ja DBGrid wird besser sein, aber wie ändere ich diesen code auf DBGrid um ?
Delphi-Quellcode:
procedure TForm1.Button5Click(Sender: TObject);
begin
table1.First;
ListBox1.Clear;
Listbox1.Items.BeginUpdate;
while not table1.Eof do begin
ListBox1.Items.Add(table1.Fields[0].AsString+', ' +table1.Fields[1].AsString+', ' +table1.Fields[2].AsString);
table1.next;
end;
ListBox1.Items.EndUpdate;
ListBox1.ItemIndex := 0;
end;
mfg vader