Ah, verstehe.
Wenn du dir anstatt eines Navigators einfach zwei Buttons nimmst und diese zur Steuerung nutzt, dann kannst du im Quellcode folgendes schreiben:
Delphi-Quelltext
1: 2: 3: 4: 5: 6: 7:
| ListBox1.ItemIndex := ListBox1.ItemIndex + 1; ListBox2.ItemIndex := ListBox2.ItemIndex + 1;
ListBox1.ItemIndex := ListBox1.ItemIndex - 1; ListBox2.ItemIndex := ListBox2.ItemIndex - 1; |
Allerdings musst du selbst dafür sorgen, dass die Bereichsgrenzen nicht überschritten werden.
Ich hoffe, das ist das, was du suchst.
Gruß, Feivel