![]() |
nächtes item aus listbox auswählen
Hi @ all,
wie wähle ich das nächste item aus einer listbox aus? best regards tuenn sry: falsches board, hab grad an meinem mediaplayer gedacht den ich gerade programmieren :wall: |
Re: nächtes item aus listbox auswählen
Delphi-Quellcode:
Listbox1.Selecedt[Listbox1.ItemIndex+1] := True;
|
Re: nächtes item aus listbox auswählen
Ganz einfach:
Delphi-Quellcode:
...:cat:...
if ListBox1.ItemIndex < Pred(ListBox1.Items.Count) then
ListBox1.ItemIndex := ListBox1.ItemIndex + 1 else ListBox1.ItemIndex := 0; und schwups... P.S. :roll: |
Re: nächtes item aus listbox auswählen
thx, geht
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 00:12 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz