Registriert seit: 12. Dez 2004
Ort: Wien, Österriech
893 Beiträge
Delphi 6 Enterprise
|
Re: Löschen einer Ini Section über eine Listbox
2. Mär 2005, 18:44
ListBox1.Selected
Ist nicht das, was du suchst.
Denn:
Zitat:
Indicates whether a particular item is selected.
property Selected[Index: Integer]: Boolean;
Description
Use Selected to query the state of a particular item in the list box. If the item specified by the Index parameter is selected in the list box, the value of the Selected property is True. If the specified item is not selected, Selected is False. Set Selected to change the currently selected item.
The Index parameter is the item referenced by its position in the list box, with the first item having an Index value of 0.
An item is selected when the user highlights it. More than one item in the list box can be selected by setting the MultiSelect property to True. In this case, the Selected item is the one that has focus when the list box has input focus.
Katura Haris Es (ein gutes Wort) ist wie ein guter Baum, dessen Wurzel fest ist und dessen Zweige in den Himmel reichen.
|