Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: Inis - Nur bestimmte Sections auflisten
8. Jan 2004, 16:03
Mache es wie folgend:
Delphi-Quellcode:
ListBox.Items.BeginUpdate;
try
Ini.ReadSections(ListBox.Items);
I := ListBox.Items.IndexOf('Optionen');
if I >= 0 then
ListBox.Items.Delete(I);
finally
ListBox.Items.EndUpdate;
end;
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|