Online
Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.071 Beiträge
Delphi 12 Athens
|
Re: Navigation mit Pfeiltasten
20. Sep 2006, 15:59
Du kannst das natürlich auch noch beliebig erweitern...
z.B:
1 > 2 > 3 > 4 > 1 > ...
Delphi-Quellcode:
VK_RIGHT:
if ActiveControl = RzBmpButton1 then ActiveControl := RzBmpButton2
else if ActiveControl = RzBmpButton2 then ActiveControl := RzBmpButton3
else if ActiveControl = RzBmpButton3 then ActiveControl := RzBmpButton4
else if ActiveControl = RzBmpButton4 then ActiveControl := RzBmpButton1;
1 > 2 > 1 > ...
und
3 > 4 > 3 > ...
Delphi-Quellcode:
VK_RIGHT:
if ActiveControl = RzBmpButton1 then ActiveControl := RzBmpButton2
else if ActiveControl = RzBmpButton2 then ActiveControl := RzBmpButton1
else if ActiveControl = RzBmpButton3 then ActiveControl := RzBmpButton4
else if ActiveControl = RzBmpButton4 then ActiveControl := RzBmpButton3;
Neuste Erkenntnis:
Seit Pos einen dritten Parameter hat,
wird PoSex im Delphi viel seltener praktiziert.
|