Hi,
da die Items der ListBox 0-basiert sind, heisst das, dass die 3. Zeile den Index = 2 hat, daher:
Delphi-Quellcode:
// aktuell ausgewählte zeile darstellen (<- ins OnClick der ListBox damit):
if ListBox1.ItemIndex > -1 then
Label1.Caption := ListBox1.Items[ListBox1.ItemIndex];
// explizit das 3. item
Label1.Caption := ListBox1.Items[2];
Ich hoffe das hilft Dir weiter
mfG
mirage228