Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: For-Schleife in Tabelle
29. Sep 2015, 13:14
Datasets durchläuft man so:
Delphi-Quellcode:
while not Dataset.Eof do
begin
Daten := Dataset.FieldByName('FELD').AsString;
Dataset.Next;
end;
Du kannst nicht direkt per Index auf die Records zugreifen.
Achja: Bei for-schleifen verändert man die Schleifenvariable nicht selbst!
Das geht automatisch!
In deinem Fall also:
Delphi-Quellcode:
i := 1;
while not DataModuleArtikel.Eof do
begin
oEdit := FindComponent('ComboBoxNummerierung' + IntToStr(i)) as TJvValidateEdit;
oEdit.Text := DataModuleArtikel.ArtikelreferenzNUMMERIERUNG.AsString;
inc(i);
DataModuleArtikel.Next;
end;
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
Geändert von Neutral General (29. Sep 2015 um 13:17 Uhr)
|