Hallo!
Ich hab ein kleines Problem mit einer Listbox. Per Doppelklick will ich Einträge daraus entfernen. Wenn man auf eine leere Stelle doppelklickt kommt eine "Listindex out of bounds" Exception.
Bitte um Hilfe!
Hier mein Code:
Ich hab ein kleines Problem mit einer Listbox. Per Doppelklick will ich Einträge daraus entfernen. Wenn man auf eine leere Stelle doppelklickt kommt eine "Listindex out of bounds" Exception.
Bitte um Hilfe!
Hier mein Code:
Code:
procedure TForm3.ListBoxDblClick(Sender: TObject);
begin
if ListBox.Items.Count > 0 then
begin
ListBox.Items.Delete(ListBox.ItemIndex);
if ListBox.Items.Count = 0 then
begin
ApplyButton.Enabled := FALSE;
FourCCCodec.ItemIndex := -1;
FourCCDesc.ItemIndex := -1;
end;
end;
end;