Registriert seit: 10. Feb 2006
255 Beiträge
Delphi XE2 Professional
|
Re: Tabellendaten --> DBListBox ?
22. Mär 2006, 08:45
Delphi-Quellcode:
procedure myForm.ButtonClick(Sender: TObject);
begin
table1.First;
ListBox1.Clear;
Listbox1.Items.BeginUpdate;
while not table1.Eof do begin
ListBox1.Items.Add(table1.Fields[0].AsString);
table1.next;
end;
ListBox1.Items.EndUpdate;
ListBox1.ItemIndex := 0;
end;
"Wer seinem Computer Mist erzählt, muss immer damit rechnen..." (unbekannt)
"Der Computer rechnet damit, dass der Mensch denkt..." (auch unbekannt)
mein blog
|