Moin Moin.
Ich hänge. Folgender Code bricht bei FindComponent mit accessViolation ab.
Delphi-Quellcode:
TimeList := TStringlist.Create;
TimeList.add('EarlyGame');
TimeList.add('EarlyMidGame');
TimeList.add('MidGame');
For I := 0 to TimeList.Count-1 do
begin
TListView(SellProductForm.FindComponent(TimeList.Strings[I]+'View')).Items.Clear;
end;
Der folgende Code läuft anstandlos
Delphi-Quellcode:
TListView(SellProductForm.FindComponent('EarlyGameView')).Items.Clear;
TListView(SellProductForm.FindComponent('EarlyMidGameView')).Items.Clear;
TListView(SellProductForm.FindComponent('MidGameView')).Items.Clear;
Was das denn ?
creehawk