
23.06.2011, 22:34
|
 |
.
|
|
Регистрация: 18.05.2011
Адрес: Омск
Сообщения: 3,970
Версия Delphi: 3,5,7,10,12,XE2
Репутация: выкл
|
|
Попробуй так:
Код:
form5.ListBox1.ItemIndex := 0;
for a := 0 to form5.ListBox1.Items.Count -1 do
begin
if Form5.ListBox1.Items[Form5.ListBox1.ItemIndex] = 'Заголовок' then
Break;
end;
ну и далее.
|